cryptpad/customize.dist/src/less2/include/checkmark.less

164 lines
4.5 KiB
Plaintext
Raw Normal View History

2018-03-13 10:31:08 +00:00
@import (once) "./colortheme-all.less";
.checkmark_main(@size) {
@width: round(@size / 8);
@dim1: round(@size / 3);
@dim2: round(2 * @size / 3);
2018-04-11 16:56:03 +00:00
@top: round(@size / 12) - 1;
2018-03-13 10:31:08 +00:00
// <label.cp-checkmark><input><span.cp-checkmark-mark></span>Text</label>
.cp-checkmark {
margin: 0;
display: flex;
align-items: center;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
& > a {
margin-left: 0.25em;
}
2018-03-13 10:31:08 +00:00
&.cp-checkmark-secondary {
.cp-checkmark-mark {
&:after {
border-color: @colortheme_checkmark-col2;
}
}
input {
&:checked ~ .cp-checkmark-mark {
background-color: @colortheme_checkmark-back2;
border-color: @colortheme_checkmark-back2;
2018-03-13 10:31:08 +00:00
}
}
}
&:hover .cp-checkmark-mark {
background-color: @colortheme_checkmark-back0-active;
}
input {
display: none;
&:checked ~ .cp-checkmark-mark {
background-color: @colortheme_checkmark-back1;
border-color: @colortheme_checkmark-back1;
2018-03-13 10:31:08 +00:00
&:after {
display: block;
}
}
}
2018-04-18 12:19:45 +00:00
.cp-checkmark-label {
&:empty {
display: none;
}
}
2018-03-13 10:31:08 +00:00
.cp-checkmark-mark {
margin-right: 10px;
position: relative;
height: @size;
width: @size;
background-color: @colortheme_checkmark-back0;
display: flex;
justify-content: center;
2018-04-11 16:56:03 +00:00
border: 1px solid @colortheme_form-border;
2018-04-16 17:07:54 +00:00
flex-shrink: 0;
2018-03-13 10:31:08 +00:00
&:after {
content: "";
display: none;
margin-top: @top;
width: @dim1;
height: @dim2;
transform: rotate(45deg);
border: solid @colortheme_checkmark-col1;
border-width: 0 @width @width 0;
2018-04-18 12:19:45 +00:00
position: absolute;
2018-03-13 10:31:08 +00:00
}
&:focus {
//border-color: #FF007C !important;
box-shadow: 0px 0px 5px @colortheme_checkmark-back1;
outline: none;
}
2018-03-13 10:31:08 +00:00
}
}
2018-04-16 17:07:54 +00:00
.cp-radio {
margin: 0;
display: flex;
align-items: center;
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
&.cp-radio-secondary {
.cp-radio-mark {
&:after {
border-color: @colortheme_checkmark-col2;
}
}
input {
&:checked ~ .cp-radio-mark {
background-color: @colortheme_checkmark-back2;
}
}
}
&:hover .cp-radio-mark {
background-color: @colortheme_checkmark-back0-active;
}
input {
display: none;
&:checked ~ .cp-radio-mark {
background-color: @colortheme_checkmark-back1;
border-color: @colortheme_checkmark-back1;
2018-04-16 17:07:54 +00:00
&:after {
display: block;
}
}
}
2018-04-18 12:19:45 +00:00
.cp-checkmark-label {
&:empty {
display: none;
}
}
2018-04-16 17:07:54 +00:00
@radio-size: @dim1 * 3;
.cp-radio-mark {
margin-right: 10px;
position: relative;
height: @radio-size;
width: @radio-size;
background-color: @colortheme_checkmark-back0;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
border: 1px solid @colortheme_form-border;
flex-shrink: 0;
&:after {
display: none;
content: "";
border-radius: 50%;
background: white;
width: @dim1;
height: @dim1;
//transform: rotate(45deg);
//border: solid @colortheme_checkmark-col1;
//border-width: 0 @width @width 0;
}
&:focus {
//border-color: #FF007C !important;
box-shadow: 0px 0px 5px @colortheme_checkmark-back1;
outline: none;
}
2018-04-16 17:07:54 +00:00
}
}
2018-03-13 10:31:08 +00:00
}