Skip to content

Commit

Permalink
Added headings to connection screen+modified color
Browse files Browse the repository at this point in the history
  • Loading branch information
JackNinway committed Sep 13, 2023
1 parent 4e8a855 commit 16edffd
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
6 changes: 4 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,19 @@
<!--Connect page-->
<div id=cn class="container-fluid" hidden>
<div id="cn_lhs" class="col col-xs-3">
<div class="cn_head"><h2>Available Configurations</h2></div>
<div id=cn_favs></div>
<div id=cn_fav_btns class=dlg_btns>
<div class="col left">
<button id=cn_neu><u>N</u>ew Configuration...</button>
<button id=cn_tgl_cfg class="pull-right"><u>C</u>ustom options
<button id=cn_neu><u>N</u>ew...</button>
<button id=cn_tgl_cfg class="pull-right"><u>E</u>dit
<span id=cn_tgl_cfg_arrow></span>
</button>
</div>
</div>
</div>
<div id="cn_rhs">
<div class="cn_head"><h2>Configuration Details</h2></div>
<div id="cn_rhs_inner">
<div id=cn_type_dtl>
<div class="row">
Expand Down
6 changes: 6 additions & 0 deletions style/less/colour/connect_page.less
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
outline: dotted black 1px;
}
>div{
border: 1px solid @DLG_BOTTOM_BG;
line-height: 36px;
background:@CN_FAV_BTN_BG;
color:@CN_FAV_BTN_FG;
&:not(:first-child) {
Expand Down Expand Up @@ -79,3 +81,7 @@
font-family: monospace;
}
}
.cn_head {
background-color: @DLG_BOTTOM_BG;
color: @CN_INPUT_FG;
}
10 changes: 9 additions & 1 deletion style/less/layout/connect_page.less
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
}

#cn_favs {
position:absolute;
position:relative;
top: 0;
left: 0;
right: 0;
Expand Down Expand Up @@ -163,4 +163,12 @@

#cn_args, #cn_env {
width:100%;
}
.cn_head {
width:100%;
height: 4%;
}
.cn_head h2 {
font-weight: bold;
padding: 5px;
}
2 changes: 1 addition & 1 deletion style/less/themes/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@DYALOG_LOGO_IMG:url(img/dyalog.png);
@RIDE_LOGO_IMG:url(img/RideLogo.png);
@SPLASH_IMG:url(img/RideSplash-Blue.png);
@CN_LHS_BG:@THEME_SECONDARY_DIM;
@CN_LHS_BG:@THEME_SECONDARY;
@CN_RHS_BG:@THEME_SECONDARY;
@CN_RHS_BG2:@THEME_SECONDARY;
@CN_INPUT_BG:@CN_LHS_BG;
Expand Down
2 changes: 1 addition & 1 deletion style/less/themes/dark.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@THEME_SECONDARY:#272937;
@THEME_WIN_BG:@THEME_SECONDARY_DIM;
@THEME_WIN_FG:white;
@CN_LHS_BG:@THEME_SECONDARY;
@CN_LHS_BG:#08090c;
@CN_RHS_BG:@THEME_SECONDARY_DIM;
@CN_RHS_BG2:black;
@CN_INPUT_FG:white;
Expand Down
2 changes: 1 addition & 1 deletion style/less/themes/light.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@THEME_SECONDARY:#edeff5;
@THEME_WIN_BG:@THEME_PRIMARY;
@THEME_WIN_FG:black;
@CN_LHS_BG:@THEME_SECONDARY_DIM;
@CN_LHS_BG:#edeff5;
@CN_RHS_BG:@THEME_SECONDARY;
@CN_RHS_BG2:@THEME_SECONDARY;
@CN_INPUT_FG:black;
Expand Down

0 comments on commit 16edffd

Please sign in to comment.