styling
This commit is contained in:
parent
2417ff6e31
commit
df6c2e5f02
4 changed files with 125 additions and 19 deletions
|
|
@ -1,4 +1,106 @@
|
|||
*.alert {
|
||||
background-color: #aa3000;
|
||||
color: white;
|
||||
@define-color accent_color #001d6b;
|
||||
@define-color destructive_color #aa3000;
|
||||
@define-color view_bg_color #00000044;
|
||||
@define-color destructive_fg_color white;
|
||||
@define-color accent_fg_color white;
|
||||
@define-color view_fg_color white;
|
||||
|
||||
button.alert {
|
||||
border-radius: 0;
|
||||
padding: 0px;
|
||||
background-color: @destructive_color;
|
||||
background-image: none;
|
||||
color: @destructive_fg_color;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
button.active {
|
||||
border-radius: 0;
|
||||
padding: 0px;
|
||||
background-color: @accent_color;
|
||||
background-image: none;
|
||||
color: @accent_fg_color;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
button.inactive {
|
||||
border-radius: 0;
|
||||
padding: 0px;
|
||||
background-color: @view_bg_color;
|
||||
background-image: none;
|
||||
color: @view_fg_color;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
button.alert:hover {
|
||||
border-radius: 0;
|
||||
padding: 0px;
|
||||
background-color: darken(@destructive_color);
|
||||
background-image: none;
|
||||
color: @destructive_fg_color;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
button.active:hover {
|
||||
border-radius: 0;
|
||||
padding: 0px;
|
||||
background-color: darken(@accent_color);
|
||||
background-image: none;
|
||||
color: @accent_fg_color;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
button.inactive:hover {
|
||||
border-radius: 0;
|
||||
padding: 0px;
|
||||
background-color: darken(@view_bg_color);
|
||||
background-image: none;
|
||||
color: @view_bg_color;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
window {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
listview {
|
||||
border-color: transparent;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
listview row {
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
listview row:hover {
|
||||
padding-left: 0px;
|
||||
padding-right: 0px;
|
||||
padding-top: 0px;
|
||||
padding-bottom: 0px;
|
||||
background: transparent;
|
||||
border-color: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
|
||||
label {
|
||||
padding: 0px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
box {
|
||||
padding: 0px;
|
||||
background-color: transparent;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue