mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
appearance: icons fixed
This commit is contained in:
parent
9e186397e0
commit
169d4d4222
16 changed files with 290 additions and 120 deletions
|
@ -1,10 +1,14 @@
|
|||
.control-bar {
|
||||
background: @bar_background;
|
||||
border-radius: 4px;
|
||||
border-radius: @panel_radius;
|
||||
display: flex;
|
||||
box-shadow: @bar_shadow;
|
||||
}
|
||||
|
||||
.control-bar-padded {
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.control-dist {
|
||||
background: #222222;
|
||||
padding: 0 10px;
|
||||
|
@ -78,11 +82,11 @@
|
|||
}
|
||||
|
||||
&:first-child {
|
||||
border-radius: 4px 0 0 4px;
|
||||
border-radius: @panel_radius 0 0 @panel_radius;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
border-radius: 0 4px 4px 0;
|
||||
border-radius: 0 @panel_radius @panel_radius 0;
|
||||
}
|
||||
|
||||
&.active {
|
||||
|
@ -92,6 +96,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
&.disabled {
|
||||
svg {
|
||||
fill: #999999;
|
||||
}
|
||||
}
|
||||
|
||||
&.highlighted {
|
||||
background: #555555;
|
||||
}
|
||||
|
@ -151,13 +161,29 @@
|
|||
// width: 500px;
|
||||
padding: 12px;
|
||||
font-weight: 200;
|
||||
font-size: 14px;
|
||||
font-size: 1em;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
||||
.helper__text {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
svg {
|
||||
fill: white;
|
||||
width: 24px;
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
&.success {
|
||||
color: @color_success;
|
||||
|
||||
svg {
|
||||
fill: @color_success;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.helper__buttons {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue