iview/src/styles/components/color-picker.less

316 lines
8.7 KiB
Text
Raw Normal View History

2018-05-15 14:26:58 +02:00
@color-picker-prefix-cls: ~'@{css-prefix}color-picker';
2017-08-15 16:39:07 +08:00
.@{color-picker-prefix-cls} {
2017-08-18 17:33:19 +08:00
display: inline-block;
2018-05-15 14:26:58 +02:00
&-hide {
display: none;
&-drop {
visibility: hidden;
}
}
&-disabled {
background-color: @input-disabled-bg;
opacity: 1;
cursor: @cursor-disabled;
color: #ccc;
}
& > div:first-child:hover {
.ivu-input {
border-color: @input-hover-border-color;
}
}
& > div:first-child.@{color-picker-prefix-cls}-disabled:hover {
.ivu-input {
border-color: tint(@input-border-color, 20%);
}
}
2017-08-18 15:23:00 +08:00
& .@{select-dropdown-prefix-cls} {
padding: 0;
}
2018-05-15 14:26:58 +02:00
&-focused {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
&-rel {
2017-08-16 13:52:50 +08:00
line-height: 0;
}
2018-05-15 14:26:58 +02:00
&-color {
2017-08-16 16:36:17 +08:00
width: 18px;
height: 18px;
2017-08-18 12:27:35 +08:00
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
2017-08-17 10:54:44 +08:00
border-radius: 2px;
2017-08-16 16:36:17 +08:00
position: relative;
top: 2px;
2018-05-15 14:26:58 +02:00
div {
2017-08-18 12:27:35 +08:00
width: 100%;
height: 100%;
2018-05-15 14:26:58 +02:00
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
2017-08-18 12:27:35 +08:00
border-radius: 2px;
}
2018-05-15 14:26:58 +02:00
&-empty {
2017-08-18 14:38:26 +08:00
background: #fff;
overflow: hidden;
text-align: center;
2018-05-15 14:26:58 +02:00
i {
font-size: 18px;
2017-08-18 14:38:26 +08:00
}
}
2018-05-15 14:26:58 +02:00
&-focused {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
2017-08-16 16:36:17 +08:00
}
2018-05-15 14:26:58 +02:00
&-large &-color {
2017-08-16 16:36:17 +08:00
width: 20px;
height: 20px;
top: 1px;
2018-05-15 14:26:58 +02:00
&-empty {
i {
font-size: 20px;
}
}
2017-08-16 16:36:17 +08:00
}
2018-05-15 14:26:58 +02:00
&-small &-color {
2017-08-16 16:36:17 +08:00
width: 14px;
height: 14px;
top: 3px;
2018-05-15 14:26:58 +02:00
&-empty {
i {
font-size: 14px;
}
}
2017-08-16 13:52:50 +08:00
}
2017-08-17 10:18:38 +08:00
2018-05-15 14:26:58 +02:00
&-picker {
&-wrapper {
2017-08-18 15:23:00 +08:00
padding: 8px 8px 0;
}
2018-05-15 14:26:58 +02:00
&-panel {
2017-08-18 15:52:06 +08:00
width: 240px;
2017-08-17 10:18:38 +08:00
margin: 0 auto;
2017-08-17 17:25:38 +08:00
box-sizing: initial;
position: relative;
2017-08-17 10:18:38 +08:00
}
2018-05-15 14:26:58 +02:00
&-hue-slider,
&-alpha-slider {
2017-08-17 17:25:38 +08:00
height: 10px;
margin-top: 8px;
position: relative;
2017-08-17 10:18:38 +08:00
}
2018-05-15 14:26:58 +02:00
&-colors {
2017-08-17 10:18:38 +08:00
margin-top: 8px;
2017-08-17 17:25:38 +08:00
overflow: hidden;
2018-05-15 14:26:58 +02:00
outline: 0;
border: 1px solid @input-border-color;
transition: border @transition-time @ease-in-out, box-shadow @transition-time @ease-in-out;
&:hover {
border: 1px solid @input-hover-border-color;
}
&:focus {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
&-wrapper {
display: inline;
2017-08-17 17:25:38 +08:00
width: 20px;
height: 20px;
float: left;
2018-05-15 14:26:58 +02:00
position: relative;
&-color {
outline: 0;
2017-08-17 10:18:38 +08:00
display: block;
2018-05-15 14:26:58 +02:00
position: absolute;
2017-08-17 10:18:38 +08:00
width: 16px;
height: 16px;
2017-08-17 17:25:38 +08:00
margin: 2px;
2017-08-17 10:18:38 +08:00
cursor: pointer;
border-radius: 2px;
2018-05-15 14:26:58 +02:00
border: 1px solid @input-border-color;
transition: border @transition-time @ease-in-out, box-shadow @transition-time @ease-in-out;
&:hover {
border: 1px solid @input-hover-border-color;
}
&:focus {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
}
&-circle {
cursor: pointer;
top: 10px;
left: 10px;
position: absolute;
width: 4px;
height: 4px;
box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
border-radius: 50%;
transform: translate(-2px, -2px);
2017-08-17 10:18:38 +08:00
}
}
}
2018-05-15 14:26:58 +02:00
.@{picker-prefix-cls}-confirm {
2017-08-17 10:18:38 +08:00
margin-top: 8px;
}
}
2017-08-17 17:25:38 +08:00
2018-05-15 14:26:58 +02:00
&-saturation {
&-wrapper {
2017-08-17 17:25:38 +08:00
width: 100%;
padding-bottom: 75%;
position: relative;
overflow: hidden;
2018-05-15 14:26:58 +02:00
outline: 0;
border: 1px solid @input-border-color;
box-shadow: @shadow-base;
transition: border @transition-time @ease-in-out, box-shadow @transition-time @ease-in-out;
&:hover {
border: 1px solid @input-hover-border-color;
}
&:focus {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
2017-08-17 17:25:38 +08:00
}
2018-05-15 14:26:58 +02:00
&,
&--white,
&--black {
2017-08-17 17:25:38 +08:00
cursor: pointer;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
2018-05-15 14:26:58 +02:00
&--white {
background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
2017-08-17 17:25:38 +08:00
}
2018-05-15 14:26:58 +02:00
&--black {
background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
2017-08-17 17:25:38 +08:00
}
2018-05-15 14:26:58 +02:00
&-pointer {
2017-08-17 17:25:38 +08:00
cursor: pointer;
position: absolute;
}
2018-05-15 14:26:58 +02:00
&-circle {
2017-08-17 17:25:38 +08:00
width: 4px;
height: 4px;
2018-05-15 14:26:58 +02:00
box-shadow: 0 0 0 1.5px #fff, inset 0 0 1px 1px rgba(0, 0, 0, 0.3), 0 0 1px 2px rgba(0, 0, 0, 0.4);
2017-08-17 17:25:38 +08:00
border-radius: 50%;
transform: translate(-2px, -2px);
}
}
2018-05-15 14:26:58 +02:00
&-hue {
2017-08-17 17:25:38 +08:00
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
border-radius: 2px;
background: linear-gradient(to right, #f00 0%, #ff0 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
2018-05-15 14:26:58 +02:00
outline: 0;
border: 1px solid @input-border-color;
box-shadow: @shadow-base;
transition: border @transition-time @ease-in-out, box-shadow @transition-time @ease-in-out;
&:hover {
border: 1px solid @input-hover-border-color;
}
&:focus {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
&-container {
2017-08-17 17:25:38 +08:00
cursor: pointer;
margin: 0 2px;
position: relative;
height: 100%;
}
2018-05-15 14:26:58 +02:00
&-pointer {
2017-08-17 17:25:38 +08:00
z-index: 2;
position: absolute;
}
2018-05-15 14:26:58 +02:00
&-picker {
2017-08-17 17:25:38 +08:00
cursor: pointer;
margin-top: 1px;
width: 4px;
border-radius: 1px;
height: 8px;
2018-05-15 14:26:58 +02:00
box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
2017-08-17 17:25:38 +08:00
background: #fff;
transform: translateX(-2px);
}
}
2018-05-15 14:26:58 +02:00
&-alpha {
2017-08-17 17:25:38 +08:00
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
2018-05-15 14:26:58 +02:00
outline: 0;
border: 1px solid @input-border-color;
box-shadow: @shadow-base;
transition: border @transition-time @ease-in-out, box-shadow @transition-time @ease-in-out;
&:hover {
border: 1px solid @input-hover-border-color;
}
&:focus {
box-shadow: 0 0 0 2px fade(@input-hover-border-color, 20%);
}
&-checkboard-wrap {
2017-08-17 17:25:38 +08:00
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
2017-08-18 14:56:10 +08:00
border-radius: 2px;
2017-08-17 17:25:38 +08:00
}
2018-05-15 14:26:58 +02:00
&-checkerboard {
2017-08-17 17:25:38 +08:00
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}
2018-05-15 14:26:58 +02:00
&-gradient {
2017-08-17 17:25:38 +08:00
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
2017-08-18 14:56:10 +08:00
border-radius: 2px;
2017-08-17 17:25:38 +08:00
}
2018-05-15 14:26:58 +02:00
&-container {
2017-08-17 17:25:38 +08:00
cursor: pointer;
position: relative;
z-index: 2;
height: 100%;
margin: 0 3px;
}
2018-05-15 14:26:58 +02:00
&-pointer {
2017-08-17 17:25:38 +08:00
z-index: 2;
position: absolute;
}
2018-05-15 14:26:58 +02:00
&-picker {
2017-08-17 17:25:38 +08:00
cursor: pointer;
width: 4px;
border-radius: 1px;
height: 8px;
2018-05-15 14:26:58 +02:00
box-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
2017-08-17 17:25:38 +08:00
background: #fff;
margin-top: 1px;
transform: translateX(-2px);
}
}
2017-08-18 15:52:06 +08:00
2018-05-15 14:26:58 +02:00
&-confirm {
margin-top: 8px;
2017-08-18 15:52:06 +08:00
position: relative;
2018-05-15 14:26:58 +02:00
border-top: 1px solid @border-color-split;
text-align: right;
padding: 8px;
clear: both;
&-color {
2017-08-18 15:52:06 +08:00
position: absolute;
top: 11px;
left: 8px;
}
}
}