mirror of
https://github.com/penpot/penpot.git
synced 2025-01-30 10:51:09 -05:00
100 lines
1.7 KiB
SCSS
100 lines
1.7 KiB
SCSS
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
//
|
|
// Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
|
|
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
|
|
|
|
.color-picker {
|
|
display: flex;
|
|
|
|
/* Common stuff */
|
|
.picker-wrapper,
|
|
.slide-wrapper {
|
|
position: relative;
|
|
}
|
|
.picker-indicator,
|
|
.slide-indicator {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
pointer-events: none;
|
|
}
|
|
.picker,
|
|
.slide {
|
|
cursor: crosshair;
|
|
}
|
|
}
|
|
|
|
/* Default skin */
|
|
|
|
.color-picker-default {
|
|
padding: 4px;
|
|
border-radius: 2px;
|
|
|
|
.picker {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
.slide {
|
|
width: 20px;
|
|
height: 200px;
|
|
}
|
|
.slide-wrapper {
|
|
margin-left: 4px;
|
|
}
|
|
.picker-indicator {
|
|
width: 5px;
|
|
height: 5px;
|
|
border: 2px solid darkblue;
|
|
border-radius: 4px;
|
|
opacity: .5;
|
|
background-color: white;
|
|
}
|
|
.slide-indicator {
|
|
width: 28px;
|
|
height: 10px;
|
|
left: -4px;
|
|
opacity: .6;
|
|
border: 4px solid lightblue;
|
|
border-radius: 4px;
|
|
background-color: white;
|
|
}
|
|
}
|
|
|
|
/* Small skin */
|
|
|
|
.color-picker-small {
|
|
border-radius: 2px;
|
|
|
|
.picker {
|
|
width: 170px;
|
|
height: 170px;
|
|
}
|
|
|
|
.slide {
|
|
width: 20px;
|
|
height: 170px;
|
|
}
|
|
.slide-wrapper {
|
|
margin-left: 4px;
|
|
}
|
|
.picker-indicator {
|
|
width: 5px;
|
|
height: 5px;
|
|
border: 2px solid darkblue;
|
|
border-radius: 4px;
|
|
opacity: .5;
|
|
background-color: white;
|
|
}
|
|
.slide-indicator {
|
|
width: 28px;
|
|
height: 10px;
|
|
left: -4px;
|
|
opacity: .6;
|
|
border: 4px solid lightblue;
|
|
border-radius: 4px;
|
|
background-color: white;
|
|
}
|
|
}
|