Compare commits
2 Commits
24f3601c2f
...
42cdd16c5f
Author | SHA1 | Date |
---|---|---|
b1ek | 42cdd16c5f | |
b1ek | 208dc4d612 |
|
@ -0,0 +1,6 @@
|
||||||
|
@mixin no_sel {
|
||||||
|
user-select: none;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
-moz-user-select: none;
|
||||||
|
-ms-user-select: none;
|
||||||
|
}
|
|
@ -1,4 +1,6 @@
|
||||||
$corners: 10px;
|
@use '../../lib/mixins.scss';
|
||||||
|
|
||||||
|
$corners: 16px;
|
||||||
|
|
||||||
.titlebar {
|
.titlebar {
|
||||||
|
|
||||||
|
@ -7,10 +9,7 @@ $corners: 10px;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
user-select: none;
|
@include mixins.no_sel;
|
||||||
-webkit-user-select: none;
|
|
||||||
-moz-user-select: none;
|
|
||||||
-ms-user-select: none;
|
|
||||||
|
|
||||||
background: #111111;
|
background: #111111;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
|
@ -19,7 +18,7 @@ $corners: 10px;
|
||||||
table {
|
table {
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
height: 33px;
|
height: 33px;
|
||||||
transform: translateY(-1px);
|
transform: translate(1px, -1px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.shade {
|
.shade {
|
||||||
|
|
Loading…
Reference in New Issue