diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2018-03-19 21:31:25 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2018-03-19 22:02:59 -0400 |
commit | 51ad09fc770f9eb24a0f143156610dfe850c6e8e (patch) | |
tree | c6417c3205f457bd9f236b5160fba783f0a36a3e /public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss | |
parent | 37792bc4b18182e73b5a9e8dfbbe600333cef08c (diff) |
tabify scss
Diffstat (limited to 'public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss')
-rw-r--r-- | public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss b/public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss index d97f579..32c0c11 100644 --- a/public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss +++ b/public-src/jarmon-style/jquerytools.tabs.tabs-no-images.scss @@ -15,55 +15,55 @@ $tabs-background-secondary: #efefef; /* root element for tab bar */ ul.css-tabs { - margin: 0; - padding: 0; - height: $tabs-tab-height; - border-bottom: $tabs-border-width $tabs-border-style; + margin: 0; + padding: 0; + height: $tabs-tab-height; + border-bottom: $tabs-border-width $tabs-border-style; - /* single tab */ - li { - float: left; - margin: 0; - padding: 0; - list-style-type: none; + /* single tab */ + li { + float: left; + margin: 0; + padding: 0; + list-style-type: none; - /* link inside the tab */ - a { - display:block; - height: $tabs-tab-height; /* $tabs-tab-height - 2*($tabs-tab-vpad+$tabs-border-width) */ - padding: $tabs-tab-vpad $tabs-tab-hpad; - border: $tabs-border-width $tabs-border-style; - border-bottom: 0; + /* link inside the tab */ + a { + display:block; + height: $tabs-tab-height; /* $tabs-tab-height - 2*($tabs-tab-vpad+$tabs-border-width) */ + padding: $tabs-tab-vpad $tabs-tab-hpad; + border: $tabs-border-width $tabs-border-style; + border-bottom: 0; - margin-right: 2px; - border-radius: 4px 4px 0 0; - text-decoration: none; + margin-right: 2px; + border-radius: 4px 4px 0 0; + text-decoration: none; - background: $tabs-background-secondary; - color: #777; + background: $tabs-background-secondary; + color: #777; - &:hover { - background-color: #F7F7F7; - color: #333; - } + &:hover { + background-color: #F7F7F7; + color: #333; + } - /* selected tab */ - &.current { - background: $tabs-background-primary; - border-bottom: $tabs-border-width solid $tabs-background-primary; - color: #000; - cursor:default; - } - } - } + /* selected tab */ + &.current { + background: $tabs-background-primary; + border-bottom: $tabs-border-width solid $tabs-background-primary; + color: #000; + cursor:default; + } + } + } } /* tab pane */ .css-panes > div { - display: none; - border: $tabs-border-width $tabs-border-style; - border-top: 0; - background: $tabs-background-primary; + display: none; + border: $tabs-border-width $tabs-border-style; + border-top: 0; + background: $tabs-background-primary; - padding: 15px 20px; + padding: 15px 20px; } |