mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-07 02:00:58 +01:00

* start working on a new main window * fix some basic ui stuff * bind the new search bar and action bar * fix add on an empty window * add a placeholder text * generate about.py using meson.build * provide a way to edit accounts * fix some issues with editing accounts * remove the logo from the database
46 lines
770 B
CSS
46 lines
770 B
CSS
.accounts-widget{
|
|
margin-left: 32px;
|
|
margin-right: 32px;
|
|
margin-top: 6px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.accounts-list{
|
|
background-color: @theme_bg_color;
|
|
}
|
|
.account-row {
|
|
padding: 6px;
|
|
border: 1px solid mix(@theme_base_color,@theme_fg_color,0.3);
|
|
background-color: mix(@theme_base_color,@theme_bg_color,0.3);
|
|
margin: 6px;
|
|
}
|
|
.account-row:selected GtkImage {
|
|
color: mix(@theme_base_color,@theme_fg_color,0.3);
|
|
}
|
|
|
|
.account-row-checkbtn{
|
|
padding-left: 6px;
|
|
}
|
|
|
|
.provider-lbl {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
padding: 3px 6px;
|
|
}
|
|
.application-name {
|
|
font-size: 14px;
|
|
color: @theme_fg_color;
|
|
font-style: italic;
|
|
}
|
|
|
|
.account-name {
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.token-label{
|
|
font-size: 14px;
|
|
}
|
|
.counter-label {
|
|
font-size: 12px;
|
|
}
|