You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
2.9 KiB
CSS
132 lines
2.9 KiB
CSS
/* CheckBox
|
|
*
|
|
* Styling CheckBox mainly includes:
|
|
*
|
|
* 1. Containers
|
|
* .dijitCheckBox
|
|
*
|
|
* 2. CheckBox within ToggleButton
|
|
* .dijitCheckBoxIcon
|
|
*
|
|
* 3. States - Checked, Hover, Disabled.
|
|
* .dijitCheckBoxChecked
|
|
* .dijitCheckBoxHover
|
|
* .dijitCheckBoxCheckedHover
|
|
* .dijitCheckBoxDisabled
|
|
* .dijitCheckBoxCheckedDisabled
|
|
*/
|
|
.flat .dijitCheckBox {
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 1;
|
|
padding: 0;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: visible;
|
|
-webkit-transition: all 0.1s linear;
|
|
-moz-transition: all 0.1s linear;
|
|
-o-transition: all 0.1s linear;
|
|
-ms-transition: all 0.1s linear;
|
|
transition: all 0.1s linear;
|
|
}
|
|
.flat .dijitCheckBox input {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
.flat .dijitCheckBoxIcon:before,
|
|
.flat .dijitCheckBoxChecked:before,
|
|
.flat .dijitCheckBoxCheckedDisabled:before {
|
|
font-family: "flat-icon";
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
font-size: 14px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
content: "\f00c";
|
|
color: #fff;
|
|
}
|
|
.flat .dijitCheckBoxIcon {
|
|
padding: 0;
|
|
}
|
|
.flat .dijitCheckBoxIcon:before {
|
|
color: #257aa7;
|
|
}
|
|
.flat .alt-primary .dijitCheckBoxIcon:before {
|
|
color: #fff;
|
|
}
|
|
.flat .alt-success .dijitCheckBoxIcon:before {
|
|
color: #fff;
|
|
}
|
|
.flat .alt-info .dijitCheckBoxIcon:before {
|
|
color: #fff;
|
|
}
|
|
.flat .alt-warning .dijitCheckBoxIcon:before {
|
|
color: #fff;
|
|
}
|
|
.flat .alt-danger .dijitCheckBoxIcon:before {
|
|
color: #fff;
|
|
}
|
|
.flat .alt-inverse .dijitCheckBoxIcon:before {
|
|
color: #fff;
|
|
}
|
|
.flat .dijitCheckBoxChecked {
|
|
background-color: #257aa7;
|
|
border-color: #257aa7;
|
|
}
|
|
.flat .dijitCheckBoxHover {
|
|
background-color: #fff;
|
|
border: 1px solid #257aa7;
|
|
}
|
|
.flat .dijitCheckBoxCheckedHover {
|
|
background-color: #2d95cd;
|
|
border: 1px solid #257aa7;
|
|
}
|
|
.flat .dijitCheckBoxDisabled {
|
|
color: #9e9e9e;
|
|
background-color: #f5f5f5;
|
|
border-color: #e3e3e3;
|
|
}
|
|
.flat .dijitCheckBoxCheckedDisabled {
|
|
color: #a6a6a6;
|
|
background-color: #5cafdb;
|
|
border-color: #5cafdb;
|
|
}
|
|
.flat .dijitCheckedMenuItem .dijitCheckedMenuItemIcon {
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
width: 16px;
|
|
height: 16px;
|
|
line-height: 1;
|
|
padding: 0;
|
|
border-radius: 2px;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: visible;
|
|
-webkit-transition: all 0.1s linear;
|
|
-moz-transition: all 0.1s linear;
|
|
-o-transition: all 0.1s linear;
|
|
-ms-transition: all 0.1s linear;
|
|
transition: all 0.1s linear;
|
|
}
|
|
.flat .dijitCheckedMenuItemChecked .dijitCheckedMenuItemIcon:before {
|
|
font-family: "flat-icon";
|
|
speak: none;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
font-variant: normal;
|
|
text-transform: none;
|
|
line-height: 1;
|
|
font-size: 14px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
content: "\f00c";
|
|
color: #257aa7;
|
|
}
|