Compare commits
19 Commits
v2
...
fix-option
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
007bea85ad | ||
|
|
e7f9d245c6 | ||
|
|
30d7cf0f99 | ||
|
|
4c4676798c | ||
|
|
9bd80bea8b | ||
|
|
85928ff84f | ||
|
|
95ea1a1a1f | ||
|
|
d8c5b2fe6d | ||
|
|
d6c9fb4e8a | ||
|
|
93bce676d4 | ||
|
|
59df5d293e | ||
|
|
9ae61528c8 | ||
|
|
027de5e404 | ||
|
|
3d032dcd78 | ||
|
|
80f573ec30 | ||
|
|
7fe3e06f3d | ||
|
|
4b63aebd19 | ||
|
|
bb7a72e40b | ||
|
|
95f9ea1d75 |
@@ -36,3 +36,11 @@
|
||||
.CDB-Box-modalHeaderItem--paddingVertical {
|
||||
padding: $baseSize + 4 0;
|
||||
}
|
||||
.CDB-Box-modalOverlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 99;
|
||||
}
|
||||
|
||||
@@ -159,6 +159,7 @@
|
||||
border-bottom: 2px solid transparent;
|
||||
border-radius: 0;
|
||||
color: $cBlue;
|
||||
touch-action: manipulation;
|
||||
|
||||
&:hover {
|
||||
border-bottom: 2px solid $cBlueHover;
|
||||
@@ -184,7 +185,7 @@
|
||||
}
|
||||
|
||||
.CDB-NavSubmenu {
|
||||
border-bottom: 2px solid $cSecondaryLine;
|
||||
border-bottom: 1px solid $cSecondaryLine;
|
||||
|
||||
&--inside {
|
||||
position: absolute;
|
||||
@@ -207,6 +208,7 @@
|
||||
border-bottom: 2px solid transparent;
|
||||
border-radius: 0;
|
||||
color: $cBlue;
|
||||
touch-action: manipulation;
|
||||
|
||||
&:hover {
|
||||
border-bottom: 2px solid $cBlueHover;
|
||||
@@ -214,9 +216,17 @@
|
||||
}
|
||||
|
||||
|
||||
.CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link {
|
||||
border-bottom: 2px solid $cMainLine;
|
||||
color: $cMainText;
|
||||
.CDB-NavSubmenu-item {
|
||||
&.is-selected .CDB-NavSubmenu-link {
|
||||
border-bottom: 2px solid $cMainText;
|
||||
color: $cMainText;
|
||||
}
|
||||
|
||||
&.is-disabled .CDB-NavSubmenu-link {
|
||||
pointer-events: none;
|
||||
color: $cHintText;
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
|
||||
.CDB-NavSubmenu-status {
|
||||
|
||||
@@ -45,6 +45,10 @@
|
||||
border: 1px solid $cError;
|
||||
color: $cError;
|
||||
}
|
||||
&.is-gray {
|
||||
border: 1px solid $cGray;
|
||||
color: $cGray;
|
||||
}
|
||||
}
|
||||
|
||||
/* SG
|
||||
|
||||
@@ -111,3 +111,14 @@
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.CDB-Checkbox:checked:disabled + .CDB-Checkbox-face {
|
||||
border: 1px solid $cSecondaryLine;
|
||||
background: $cThirdBackground;
|
||||
|
||||
&::before,
|
||||
&::after {
|
||||
background: $cAltText;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -181,7 +181,7 @@
|
||||
position: absolute;
|
||||
left: -1px;
|
||||
width: 1px;
|
||||
height: calc(100% + 2px);
|
||||
height: $baseSize * 4;
|
||||
content: '';
|
||||
}
|
||||
|
||||
|
||||
@@ -126,6 +126,17 @@ Description
|
||||
}
|
||||
}
|
||||
|
||||
.CDB-ArrowToogle.is-mini {
|
||||
&::before {
|
||||
left: 3px;
|
||||
width: 6px;
|
||||
}
|
||||
&::after {
|
||||
right: 3px;
|
||||
width: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
.CDB-ArrowToogle.is-blue {
|
||||
&::before {
|
||||
background: $cBlue;
|
||||
|
||||
@@ -38,6 +38,9 @@
|
||||
.u-lSpace--s {
|
||||
margin-left: 2px;
|
||||
}
|
||||
.u-lSpace--m {
|
||||
margin-left: 8px;
|
||||
}
|
||||
.u-lSpace--xl {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
$cBlue: #1785FB;
|
||||
$cBlack: #000;
|
||||
$cWhite: #FFF;
|
||||
$cGray: #999;
|
||||
$cMainBg: #2E3C43;
|
||||
|
||||
// -- Structure
|
||||
|
||||
Reference in New Issue
Block a user