Add basic theming to the keyedior popover (and iframe). #15
This commit is contained in:
18
css/app.css
18
css/app.css
@@ -134,3 +134,21 @@ ul {
|
|||||||
background-image: url(../images/grips/vertical.png); }
|
background-image: url(../images/grips/vertical.png); }
|
||||||
.grip:hover:before {
|
.grip:hover:before {
|
||||||
display: block; }
|
display: block; }
|
||||||
|
|
||||||
|
.key-editor__popup {
|
||||||
|
border: none;
|
||||||
|
width: 0px;
|
||||||
|
height: 0px;
|
||||||
|
position: absolute;
|
||||||
|
top: 215px;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -310px; }
|
||||||
|
|
||||||
|
svg.uhk.faded #left-case,
|
||||||
|
svg.uhk.faded #right-case {
|
||||||
|
fill: #555; }
|
||||||
|
|
||||||
|
svg.uhk.faded rect {
|
||||||
|
fill: #666; }
|
||||||
|
svg.uhk.faded rect.active {
|
||||||
|
fill: #000; }
|
||||||
|
|||||||
@@ -219,3 +219,32 @@ ul {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.key-editor__popup {
|
||||||
|
border: none;
|
||||||
|
width: 0px;
|
||||||
|
height: 0px;
|
||||||
|
|
||||||
|
// Static setting for quick portotyping.
|
||||||
|
position: absolute;
|
||||||
|
top: 215px;
|
||||||
|
left: 50%;
|
||||||
|
margin-left: -310px;
|
||||||
|
}
|
||||||
|
|
||||||
|
svg.uhk {
|
||||||
|
&.faded {
|
||||||
|
#left-case,
|
||||||
|
#right-case {
|
||||||
|
fill: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
rect {
|
||||||
|
fill: #666;
|
||||||
|
|
||||||
|
&.active {
|
||||||
|
fill: #000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user