Files
Sourcetrail/bin/app/data/gui/bookmark_view/bookmark_view.css
T
Eberhard Graether ffafc55273 ui: Fixed layout of QtBookmarkCreator
* fixed window size and resizing
* fixed layout and spacing
* removed focus rects on Mac
* fixed category dropdown style for Mac
* reuse button handling from QtWindow
* updated QtBookmarkBar buttons to new icon creation
2017-03-17 13:36:34 +01:00

221 lines
3.4 KiB
CSS

/* General settings */
* {
font-size: 16px;
/* font-family: "<setting:font_name>"; */
}
#header {
background-color: #2E3C86;
}
#body {
background-color: white;
}
/* window */
/* header */
#header_background {
background-color: #2E3C86;
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
#filter_box, #order_box {
/* background-color: #227abf;
color: white; */
max-width: 100px;
min-width: 100px;
margin-left: 50px;
margin-right: 100px;
}
#title {
color: white;
font-size: <setting:font_size+8>px;
font-weight: bold;
margin-top: 40px;
margin-left: 30px;
margin-right: 20px;
}
#filter_label, #order_label {
color: white;
font-size: <setting:font_size+6>px;
font-weight: bold;
margin-top: 65px;
margin-left: 40px;
margin-right: 20px;
}
/* body */
#bookmark_tree {
border: none;
margin: 0px;
margin-top: 50px;
margin-bottom: 25px;
max-width: 532px;
max-height: 460px;
background-color: white;
alternate-background-color: #dadada; /* color every single line alternating, however I want to color complete categories alternating */
}
#category_name {
font-size: <setting:font_size+6>px;
}
#bookmark_category {
margin-top: 14px;
}
#bookmark {
margin-top: 0px;
}
#close_button {
min-width: 150px;
max-width: 150px;
}
#close_button {
margin-right: 20px;
background-color: white;
color: black;
border-color: black;
}
#close_button:hover {
background: #2E3C86;
color: white;
}
/* bookmark category */
#bookmark_category {
margin-left: 15px;
margin-right: 50px;
}
#category_expand_button {
border: none;
background: transparent;
min-width: 30px;
max-width: 30px;
}
#category_delete_button {
min-width: 30px;
max-width: 30px;
border: none;
background: transparent;
}
/* bookmark */
#bookmark {
margin-left: 15px;
margin-right: 50px;
}
#comment_button {
background: transparent;
border: none;
min-width: 30px;
max-width: 30px;
}
#comment_button:hover {
color: #2D3C86;
}
#edit_button {
min-width: 30px;
max-width: 30px;
border: none;
background: transparent;
}
#delete_button {
min-width: 30px;
max-width: 30px;
border: none;
background: transparent;
}
#date_label {
font-size: <setting:font_size>px;
min-width: 100px;
max-width: 100px;
}
/* Search bar buttons */
#bookmark_button, #show_bookmark_button {
background: <color:search/button/normal>;
border: none;
height: 30px;
width: 30px;
}
#bookmark_button:disabled, #show_bookmark_button:disabled {
background: <color:search/button/disabled>;
}
#bookmark_button:hover, #show_bookmark_button:hover {
background: <color:search/button/hover>;
}
#bookmark_button:pressed, #show_bookmark_button:pressed {
background: <color:search/button/press>;
}
#bookmark_button {
border-bottom-left-radius: 12px;
border-top-left-radius: 12px;
margin: 0px;
margin-right: 2px;
}
#show_bookmark_button {
border-bottom-right-radius: 12px;
border-top-right-radius: 12px;
margin: 0px;
}
/* Bookmark creator */
#creator_header_background {
background-color: #2E3C86;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
#creator_title_label {
font-size: 18px;
font-weight: bold;
color: white;
}
#creator_label {
font-size: 14px;
font-weight: bold;
}
#creator_name_edit, #creator_comment_box {
border: 1px;
border-style: solid;
border-color: #dadada;
background: white;
border-radius: 12px;
min-height: 30px;
padding: 3px;
padding-left: 5px;
}
#creator_comment_box {
min-height: 160px;
}