Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modified preferences tab bar styling, #1127 #1129

Merged
merged 2 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,6 @@
<a href=#wins>Trace/Edit</a>
<button id=prf_print class=tb_btn><span class="fal fa-print"></span></button>
</div>
<hr>
<div id=prf_content>

<!--Layout-->
Expand Down
217 changes: 109 additions & 108 deletions style/dark-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,39 @@ select {
border: 1px solid rgba(169, 169, 169, 0.3);
color: white;
}
#lb {
background-color: #1c1e28;
border-bottom: 1px black solid;
}
#lb #lb_inner {
background: #1c1e28;
}
#lb b {
color: #a9a9a9;
}
#lb b:hover {
color: #7688d9;
}
#lb b:active,
#lb b.pressed {
background-color: rgba(0, 0, 0, 0.2);
color: white;
}
#lb .lb_placeholder {
background: rgba(0, 0, 0, 0.2);
}
#lb .ui-sortable-helper {
color: black;
}
#lb_tip {
background: #1c1e28;
border: 1px solid black;
color: #a9a9a9;
}
#lb_tip hr {
border-top: 1px solid black;
border-bottom: 1px solid #2e303e;
}
/*menu (see ../src/menu.js for the DOM structure)*/
.menu {
background-color: #edeff5;
Expand Down Expand Up @@ -348,39 +381,6 @@ select {
.menu .m-box a:focus.m-checked {
background: rgba(0, 0, 0, 0.2) 5px center no-repeat url(img/menu_chk.png);
}
#lb {
background-color: #1c1e28;
border-bottom: 1px black solid;
}
#lb #lb_inner {
background: #1c1e28;
}
#lb b {
color: #a9a9a9;
}
#lb b:hover {
color: #7688d9;
}
#lb b:active,
#lb b.pressed {
background-color: rgba(0, 0, 0, 0.2);
color: white;
}
#lb .lb_placeholder {
background: rgba(0, 0, 0, 0.2);
}
#lb .ui-sortable-helper {
color: black;
}
#lb_tip {
background: #1c1e28;
border: 1px solid black;
color: #a9a9a9;
}
#lb_tip hr {
border-top: 1px solid black;
border-bottom: 1px solid #2e303e;
}
.breakpointarea {
border-right: 1px solid #272937;
cursor: pointer;
Expand Down Expand Up @@ -448,6 +448,56 @@ select {
.sessionmargin.modified::before {
color: red;
}
#splash {
background: url(img/RideLogo.png) center no-repeat, url(img/bg.jpg) center no-repeat #1c1e28;
}
#ide {
background-color: #1c1e28;
}
#apl_font {
color: #1c1e28;
}
::selection {
background: #7688d9;
color: white;
}
/*must be separate rules*/
::-moz-selection {
background: #7688d9;
color: white;
}
/*must be separate rules*/
body {
font-family: Roboto, sans-serif;
}
::-webkit-scrollbar {
background-color: #1c1e28;
}
::-webkit-scrollbar-corner {
background-color: #1c1e28;
}
::-webkit-scrollbar-track {
background-color: #272937;
border: 1px solid #1c1e28;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(118, 136, 217, 0.3);
border: 1px solid #1c1e28;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:horizontal {
border-width: 1px 0;
}
::-webkit-scrollbar-thumb:vertical {
border-width: 0 1px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(118, 136, 217, 0.6);
}
::-webkit-scrollbar-thumb:active {
background-color: rgba(118, 136, 217, 0.9);
}
#prf_dlg hr {
border-top: 1px solid black;
border-bottom: 1px solid #2e303e;
Expand All @@ -456,13 +506,14 @@ select {
font-family: Roboto;
font-size: 14px;
font-weight: 600;
background-color: #323446;
}
#prf_nav a {
color: white;
}
#prf_nav a.sel {
cursor: default;
color: #7688d9;
border-bottom: 0.5ex solid #7688d9;
}
#prf_content select {
background-color: #272937;
Expand Down Expand Up @@ -628,56 +679,6 @@ a:hover {
display: none;
}
}
::-webkit-scrollbar {
background-color: #1c1e28;
}
::-webkit-scrollbar-corner {
background-color: #1c1e28;
}
::-webkit-scrollbar-track {
background-color: #272937;
border: 1px solid #1c1e28;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(118, 136, 217, 0.3);
border: 1px solid #1c1e28;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:horizontal {
border-width: 1px 0;
}
::-webkit-scrollbar-thumb:vertical {
border-width: 0 1px;
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(118, 136, 217, 0.6);
}
::-webkit-scrollbar-thumb:active {
background-color: rgba(118, 136, 217, 0.9);
}
#splash {
background: url(img/RideLogo.png) center no-repeat, url(img/bg.jpg) center no-repeat #1c1e28;
}
#ide {
background-color: #1c1e28;
}
#apl_font {
color: #1c1e28;
}
::selection {
background: #7688d9;
color: white;
}
/*must be separate rules*/
::-moz-selection {
background: #7688d9;
color: white;
}
/*must be separate rules*/
body {
font-family: Roboto, sans-serif;
}
#sb {
background-color: #1c1e28;
border-top: 1px solid black;
Expand Down Expand Up @@ -706,14 +707,6 @@ body {
#status_body {
background-color: #1c1e28;
}
#vt_bln {
border: solid black 1px;
background-color: black;
color: white;
}
#vt_tri {
border-color: black;
}
.tooltip {
color: #7688d9;
}
Expand All @@ -725,22 +718,6 @@ body {
.tooltip .tooltiptext::after {
border-color: transparent #1c1e28 transparent transparent;
}
#wse {
background-color: #1c1e28;
color: white;
font-family: apl;
font-size: 16px;
font-weight: 300;
line-height: 1.1em;
text-align: left;
}
#wse .bt_text::before {
color: #1c1e28;
}
#wse .bt_text.selected {
background-color: rgba(118, 136, 217, 0.75);
outline: rgba(118, 136, 217, 0.75);
}
.toolbar {
background-color: #1c1e28;
border-bottom: 1px solid #272937;
Expand Down Expand Up @@ -782,3 +759,27 @@ body {
border: 0 solid #272937;
border-right-width: 1px;
}
#vt_bln {
border: solid black 1px;
background-color: black;
color: white;
}
#vt_tri {
border-color: black;
}
#wse {
background-color: #1c1e28;
color: white;
font-family: apl;
font-size: 16px;
font-weight: 300;
line-height: 1.1em;
text-align: left;
}
#wse .bt_text::before {
color: #1c1e28;
}
#wse .bt_text.selected {
background-color: rgba(118, 136, 217, 0.75);
outline: rgba(118, 136, 217, 0.75);
}
3 changes: 2 additions & 1 deletion style/less/colour/preferences.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
font-family: Roboto;
font-size: 14px;
font-weight: 600;
background-color: @DLG_BOTTOM_BG;
a {
color: @PRF_NAV_COL;
&.sel {
cursor: default;
color: @PRF_ACT_NAV_COL;
border-bottom: 0.5ex solid @PRF_ACT_NAV_COL;
}
}
}
Expand Down
1 change: 0 additions & 1 deletion style/less/layout/preferences/prefs.less
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
width: 28px;
}
#prf_content {
margin-top: -2px;
padding:5px 10px 0;
button{
padding:8px;
Expand Down
Loading