2015-06-19 08:54:20 +08:00
|
|
|
* {
|
2015-07-07 11:32:08 +08:00
|
|
|
box-sizing: border-box;
|
2015-06-19 08:54:20 +08:00
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); // remove tap highlight color for mobile safari
|
|
|
|
}
|
|
|
|
|
2015-07-07 11:32:08 +08:00
|
|
|
*:before,
|
|
|
|
*:after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2015-06-09 15:21:44 +08:00
|
|
|
// HTML & Body reset
|
|
|
|
html, body {
|
|
|
|
.square(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: @font-family;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
color: @text-color;
|
|
|
|
background-color: @body-background;
|
|
|
|
}
|
|
|
|
|
|
|
|
// unify the setting of elements's margin and padding for browsers
|
|
|
|
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
|
2015-11-26 19:32:55 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reset fonts for relevant elements
|
|
|
|
button,input,select,textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
2016-05-06 12:17:44 +08:00
|
|
|
color: inherit;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2015-08-05 17:54:19 +08:00
|
|
|
// Remove the clear button of a text input control in IE10+
|
|
|
|
input::-ms-clear, input::-ms-reveal {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-03-22 19:24:47 +08:00
|
|
|
::selection {
|
|
|
|
background: @primary-color;
|
2016-03-23 18:52:27 +08:00
|
|
|
color: #fff;
|
2016-03-22 19:24:47 +08:00
|
|
|
}
|
|
|
|
|
2015-06-16 19:34:31 +08:00
|
|
|
// Links
|
2015-06-09 15:21:44 +08:00
|
|
|
a {
|
|
|
|
color: @link-color;
|
|
|
|
background: transparent;
|
|
|
|
text-decoration: none;
|
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
2016-03-22 19:24:47 +08:00
|
|
|
transition: color .3s ease;
|
2015-06-16 19:34:31 +08:00
|
|
|
|
2015-06-09 15:21:44 +08:00
|
|
|
&:hover {
|
|
|
|
color: @link-hover-color;
|
|
|
|
}
|
|
|
|
|
2015-07-14 20:43:27 +08:00
|
|
|
&:active {
|
|
|
|
color: @link-active-color;
|
|
|
|
}
|
|
|
|
|
2015-06-09 15:21:44 +08:00
|
|
|
&:active,
|
|
|
|
&:hover {
|
|
|
|
outline: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&[disabled] {
|
2016-01-08 00:22:18 +08:00
|
|
|
color: #ccc;
|
2015-06-09 15:21:44 +08:00
|
|
|
cursor: not-allowed;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Utility classes
|
2015-06-09 18:22:52 +08:00
|
|
|
.clearfix {
|
|
|
|
.clearfix();
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
2015-06-09 18:22:52 +08:00
|
|
|
.pull-left {
|
|
|
|
float: left;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
2015-06-09 18:22:52 +08:00
|
|
|
.pull-right {
|
|
|
|
float: right;
|
2015-06-09 15:21:44 +08:00
|
|
|
}
|
2015-06-09 18:22:52 +08:00
|
|
|
.hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.show {
|
|
|
|
display: block !important;
|
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2015-08-25 11:48:01 +08:00
|
|
|
|
2016-04-29 12:28:24 +08:00
|
|
|
.ant-divider {
|
|
|
|
margin: 0 4px;
|
|
|
|
color: #999;
|
|
|
|
display: inline-block;
|
|
|
|
height: 8px;
|
|
|
|
width: 1px;
|
|
|
|
background: #ccc;
|
|
|
|
}
|
|
|
|
|
2015-08-25 11:48:01 +08:00
|
|
|
code,
|
|
|
|
kbd,
|
|
|
|
pre,
|
|
|
|
samp {
|
|
|
|
font-family: @code-family;
|
|
|
|
}
|