Skip to content

Commit

Permalink
Fix keyboard shortcut dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
naeramarth7 committed Apr 16, 2014
1 parent 841c5de commit 0faca3b
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
18 changes: 17 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
*********************************
*
* Description: dimensions used in the clean-greader theme
*
*
* Author: Sven Flickinger (naeramarth7)
* File Created: 2013-08-29
**/
Expand Down Expand Up @@ -1703,11 +1703,17 @@ hr {
border-width: 1px 1px 2px;
/* title */
/* content */ }
.claro .dijitDialog#helpDlg {
top: 2% !important;
max-height: 96%;
overflow-y: scroll; }
.claro .dijitDialog .dijitDialogTitleBar {
border: 0px solid transparent;
background: #f5f5f5;
background-image: none; }
.claro .dijitDialog .dijitDialogPaneContent {
width: auto !important;
box-sizing: border-box;
border: 0px solid transparent; }
.claro .dijitDialog .dlgSec {
font-weight: bold;
Expand Down Expand Up @@ -1743,3 +1749,13 @@ hr {
/* feeds with errors */
.inactiveFeedHolder {
padding: 8px; }

/* keyboard shortcuts */
.helpKbList {
list-style-type: none;
padding-left: 24px; }
.helpKbList h2, .helpKbList h3 {
margin-left: -24px; }
.helpKbList .hksequence {
display: inline-block;
width: 100px; }
2 changes: 1 addition & 1 deletion css/modules/_dimensions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*********************************
*
* Description: dimensions used in the clean-greader theme
*
*
* Author: Sven Flickinger (naeramarth7)
* File Created: 2013-08-29
**/
Expand Down
24 changes: 24 additions & 0 deletions css/partials/_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ hr {
.claro .dijitDialog {
@include brdr-card;

&#helpDlg {
top: 2% !important;
max-height: 96%;
overflow-y: scroll;
}

/* title */
.dijitDialogTitleBar {
@include brdr-none;
Expand All @@ -40,6 +46,8 @@ hr {

/* content */
.dijitDialogPaneContent {
width: auto !important;
box-sizing: border-box;
@include brdr-none;
}

Expand Down Expand Up @@ -93,3 +101,19 @@ hr {
.inactiveFeedHolder {
padding: $content-padding;
}

/* keyboard shortcuts */
.helpKbList {
list-style-type: none;
padding-left: 24px;

h2, h3 {
margin-left: -24px;
}

.hksequence {
display: inline-block;
width: 100px;
}
}

0 comments on commit 0faca3b

Please sign in to comment.