lixin-web
Version:
vue and bootstrap
436 lines (394 loc) • 9.62 kB
CSS
@charset "UTF-8";
:root{
/* Transition
-------------------------- */
/* Colors
-------------------------- */
/* Link
-------------------------- */
/* Border
-------------------------- */
/* Box-shadow
-------------------------- */
/* Fill
-------------------------- */
/* Font
-------------------------- */
/* Size
-------------------------- */
/* z-index
-------------------------- */
/* Disable base
-------------------------- */
/* Icon
-------------------------- */
/* Checkbox
-------------------------- */
/* Radio
-------------------------- */
/* Select
-------------------------- */
/* Alert
-------------------------- */
/* Message Box
-------------------------- */
/* Message
-------------------------- */
/* Notification
-------------------------- */
/* Input
-------------------------- */
/* Cascader
-------------------------- */
/* Group
-------------------------- */
/* Tab
-------------------------- */
/* Button
-------------------------- */
/* cascader
-------------------------- */
/* Switch
-------------------------- */
/* Dialog
-------------------------- */
/* Table
-------------------------- */
/* Pagination
-------------------------- */
/* Popover
-------------------------- */
/* Tooltip
-------------------------- */
/* Tag
-------------------------- */
/* Dropdown
-------------------------- */
/* Badge
-------------------------- */
/* Card
--------------------------*/
/* Slider
--------------------------*/
/* Steps
--------------------------*/
/* Menu
--------------------------*/
/* Rate
--------------------------*/
/* DatePicker
--------------------------*/
/* Loading
--------------------------*/
/* Scrollbar
--------------------------*/
/* Carousel
--------------------------*/
/* Collapse
--------------------------*/
/* Transfer
--------------------------*/
}
.el-checkbox{
color: rgb(31, 48, 61);
position: relative;
cursor: pointer;
display: inline-block;
white-space: nowrap;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none
}
.el-checkbox + .el-checkbox{
margin-left: 15px
}
.el-checkbox__input{
white-space: nowrap;
cursor: pointer;
outline: none;
display: inline-block;
line-height: 1;
position: relative;
vertical-align: middle
}
.el-checkbox__input.is-indeterminate .el-checkbox__inner{
background-color: #2ba7e7;
border-color: rgb(1, 166, 249)
}
.el-checkbox__input.is-indeterminate .el-checkbox__inner::before{
content: '';
position: absolute;
display: block;
border: 1px solid #fff;
margin-top: -1px;
left: 3px;
right: 3px;
top: 50%
}
.el-checkbox__input.is-indeterminate .el-checkbox__inner::after{
display: none
}
.el-checkbox__input.is-focus .el-checkbox__inner{
border-color: #2ba7e7;
}
.el-checkbox__input.is-checked .el-checkbox__inner{
background-color: #2ba7e7;
border-color: rgb(1, 166, 249)
}
.el-checkbox__input.is-checked .el-checkbox__inner::after{
transform: rotate(45deg) scaleY(1)
}
.el-checkbox__input.is-disabled .el-checkbox__inner{
background-color: rgb(238, 242, 246);
border-color: rgb(209, 221, 229);
cursor: not-allowed
}
.el-checkbox__input.is-disabled .el-checkbox__inner::after{
cursor: not-allowed;
border-color: rgb(238, 242, 246)
}
.el-checkbox__input.is-disabled .el-checkbox__inner + .el-checkbox__label{
cursor: not-allowed
}
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{
background-color: rgb(209, 221, 229);
border-color: rgb(209, 221, 229)
}
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{
border-color: #fff
}
.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner{
background-color: rgb(209, 221, 229);
border-color: rgb(209, 221, 229)
}
.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before{
border-color: #fff
}
.el-checkbox__input.is-disabled + .el-checkbox__label{
color: #bbb;
cursor: not-allowed
}
.el-checkbox__inner{
display: inline-block;
position: relative;
border: 1px solid #d5d5d5;
border-radius: 100%;
box-sizing: border-box;
width: 18px;
height: 18px;
background-color: #fff;
z-index: 1;
transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),
background-color .25s cubic-bezier(.71,-.46,.29,1.46)
}
.el-checkbox__inner:hover{
border-color: #2ba7e7
}
.el-checkbox__inner::after{
box-sizing: content-box;
content: "";
border: 2px solid #fff;
border-left: 0;
border-top: 0;
height: 8px;
left: 5px;
position: absolute;
top: 1px;
transform: rotate(45deg) scaleY(0);
width: 4px;
transition: transform .15s cubic-bezier(.71,-.46,.88,.6) .05s;
transform-origin: center
}
.el-checkbox__original{
opacity: 0;
outline: none;
position: absolute;
margin: 0;
width: 0;
height: 0;
left: -999px
}
.el-checkbox__label{
font-size: 14px;
padding-left: 5px
}
.el-checkbox-button{
position: relative;
display: inline-block
}
.el-checkbox-button.is-checked{}
.el-checkbox-button.is-checked .el-checkbox-button__inner{
color: #fff;
background-color: #2ba7e7;
border-color: #2ba7e7;
box-shadow: -1px 0 0 0 #2ba7e7
}
.el-checkbox-button.is-disabled{}
.el-checkbox-button.is-disabled .el-checkbox-button__inner{
color: #d5d5d5;
cursor: not-allowed;
background-image: none;
background-color: rgb(238, 242, 246);
border-color: rgb(209, 221, 229);
box-shadow: none
}
.el-checkbox-button.is-focus{}
.el-checkbox-button.is-focus .el-checkbox-button__inner{
border-color: #2ba7e7
}
.el-checkbox-button:first-child .el-checkbox-button__inner{
border-left: 1px solid #d5d5d5;
border-radius: 4px 0 0 4px;
box-shadow: none
}
.el-checkbox-button:last-child .el-checkbox-button__inner{
border-radius: 0 4px 4px 0
}
.el-checkbox-button__inner{
display: inline-block;
line-height: 1;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
background: #fff;
border: 1px solid #d5d5d5;
border-left: 0;
color: rgb(31, 48, 61);
-webkit-appearance: none;
text-align: center;
box-sizing: border-box;
outline: none;
margin: 0;
position: relative;
cursor: pointer;
transition: all .3s cubic-bezier(.645,.045,.355,1);
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
padding: 8px 15px;
font-size: 14px;
border-radius: 0
}
.el-checkbox-button__inner:hover{
color: #2ba7e7
}
.el-checkbox-button__inner [class*="el-icon-"]{
line-height: 0.9
}
.el-checkbox-button__inner [class*="el-icon-"] + span{
margin-left: 5px
}
.el-checkbox-button__original{
opacity: 0;
outline: none;
position: absolute;
margin: 0;
visibility: hidden;
left: -999px
}
.el-checkbox-button--large{}
.el-checkbox-button--large .el-checkbox-button__inner{
padding: 11px 19px;
font-size: 16px;
border-radius: 0
}
.el-checkbox-button--small{}
.el-checkbox-button--small .el-checkbox-button__inner{
padding: 7px 9px;
font-size: 12px;
border-radius: 0
}
.el-checkbox-button--mini{}
.el-checkbox-button--mini .el-checkbox-button__inner{
padding: 4px 4px;
font-size: 12px;
border-radius: 0
}
:root{
/* Transition
-------------------------- */
/* Colors
-------------------------- */
/* Link
-------------------------- */
/* Border
-------------------------- */
/* Box-shadow
-------------------------- */
/* Fill
-------------------------- */
/* Font
-------------------------- */
/* Size
-------------------------- */
/* z-index
-------------------------- */
/* Disable base
-------------------------- */
/* Icon
-------------------------- */
/* Checkbox
-------------------------- */
/* Radio
-------------------------- */
/* Select
-------------------------- */
/* Alert
-------------------------- */
/* Message Box
-------------------------- */
/* Message
-------------------------- */
/* Notification
-------------------------- */
/* Input
-------------------------- */
/* Cascader
-------------------------- */
/* Group
-------------------------- */
/* Tab
-------------------------- */
/* Button
-------------------------- */
/* cascader
-------------------------- */
/* Switch
-------------------------- */
/* Dialog
-------------------------- */
/* Table
-------------------------- */
/* Pagination
-------------------------- */
/* Popover
-------------------------- */
/* Tooltip
-------------------------- */
/* Tag
-------------------------- */
/* Dropdown
-------------------------- */
/* Badge
-------------------------- */
/* Card
--------------------------*/
/* Slider
--------------------------*/
/* Steps
--------------------------*/
/* Steps
--------------------------*/
/* Rate
--------------------------*/
/* DatePicker
--------------------------*/
/* Loading
--------------------------*/
/* Scrollbar
--------------------------*/
/* Carousel
--------------------------*/
/* Collapse
--------------------------*/
}