Merge branch 'develop-ascraeus' into develop

* develop-ascraeus:
  [ticket/12648] RTL fix & ACP border fix
  [ticket/12648] Slightly clear ACP active tab border
  [ticket/12648] Fix poll tab and revert unrelated color change
  [ticket/12648] Fix poll tab display error
  [ticket/12648] Added ARIA functionality
  [ticket/12648] Fix and modernize ACP header tabs
  [ticket/12648] More style fixes and also cleaned up CP left navigation
  [ticket/12648] IE8 & IE9 color fix
  [ticket/12648] Improve UCP/MCP/Posting tabs
This commit is contained in:
Cesar G 2014-06-23 20:45:40 -07:00
commit a6e8dea019
20 changed files with 244 additions and 305 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 541 B

View file

@ -320,176 +320,156 @@ li {
/* Tabbed menu
Based on: http://www.alistapart.com/articles/slidingdoors2/
----------------------------------------*/
#tabs {
font-family: Arial, Helvetica, sans-serif;
line-height: normal;
margin: 0 7px;
min-width: 600px;
position: relative;
z-index: 2;
}
#tabs ul {
margin:0;
padding: 0;
#tabs > ul {
list-style: none;
}
#tabs ul:after {
content: '';
display: block;
clear: both;
}
#tabs li {
display: block;
float: left;
margin: 0;
padding: 0;
font-size: 0.85em;
font-weight: bold;
}
#tabs li:after {
#tabs > ul:after {
content: '';
display: block;
clear: both;
}
#tabs a {
#tabs .tab {
display: inline-block;
float: left;
background:url("../images/bg_tabs1.gif") no-repeat 0% -34px;
margin: 0 1px 0 0;
padding: 0 0 0 7px;
text-decoration: none;
position: relative;
}
.rtl #tabs li {
float: right;
}
#tabs a span {
float: left;
display: block;
background: url("../images/bg_tabs2.gif") no-repeat 100% -34px;
padding: 7px 10px 4px 4px;
min-height: 14px;
color: #767676;
white-space: nowrap;
font-family: Arial, Helvetica, sans-serif;
text-transform: uppercase;
font-size: 0.85em;
font-weight: bold;
line-height: 14px;
}
.rtl #tabs a span {
.rtl #tabs .tab {
float: right;
}
/* Commented Backslash Hack hides rule from IE5-Mac \*/
#tabs a span, .rtl #tabs a span { float:none;}
/* End hack */
#tabs .tab > a {
background: #D4D6DA;
background: -moz-linear-gradient(top, #CACBCF 0%, #D4D6DA 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #CACBCF), color-stop(100%, #D4D6DA));
background: -webkit-linear-gradient(top, #CACBCF 0%, #D4D6DA 100%);
background: -o-linear-gradient(top, #CACBCF 0%, #D4D6DA 100%);
background: -ms-linear-gradient(top, #CACBCF 0%, #D4D6DA 100%);
background: linear-gradient(to bottom, #CACBCF 0%, #D4D6DA 100%);
border: 1px solid #BBB;
border-bottom-width: 0;
border-radius: 5px 5px 0 0;
color: #767676;
display: block;
font-weight: bold;
margin: 1px 1px 2px 0;
padding: 6px 9px 4px;
position: relative;
text-decoration: none;
text-transform: uppercase;
white-space: nowrap;
cursor: pointer;
}
#tabs a:hover span {
#tabs .tab > a:hover {
background: #F1F1EE;
border-color: #C0BFBB;
color: #BC2A4D;
}
#tabs a:hover {
background-position: 0 -69px;
}
#tabs a:hover span {
background-position: 100% -69px;
}
#tabs .activetab a {
background-position: 0 0;
border-bottom: 1px solid #DCDEE2;
}
#tabs .activetab a span {
background-position: 100% 0;
padding-bottom: 5px;
#tabs .activetab > a,
#tabs .activetab > a:hover {
background: #DCDEE2;
background: -moz-linear-gradient(top, #F2F2F2 0%, #DCDEE2 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F2F2F2), color-stop(100%, #DCDEE2));
background: -webkit-linear-gradient(top, #F2F2F2 0%, #DCDEE2 100%);
background: -o-linear-gradient(top, #F2F2F2 0%, #DCDEE2 100%);
background: -ms-linear-gradient(top, #F2F2F2 0%, #DCDEE2 100%);
background: linear-gradient(to bottom, #F2F2F2 0%, #DCDEE2 100%);
border-color: #999;
border-bottom: 2px solid #DCDEE2;
box-shadow: 0 1px 1px #FFF inset;
color: #23649F;
margin: 0 1px 0 0;
padding: 7px 10px 4px;
}
#tabs .activetab a:hover span {
#tabs .activetab > a:hover {
color: #115098;
}
/* Responsive tabs
----------------------------------------*/
.responsive-tab {
position: relative;
}
.responsive-tab .responsive-tab-link span {
display: inline-block;
.responsive-tab > a.responsive-tab-link {
display: block;
font-size: 16px;
position: relative;
width: 16px;
line-height: 14px;
text-decoration: none;
padding-left: 9px !important;
padding-right: 9px !important;
}
.responsive-tab .responsive-tab-link span:before {
.responsive-tab .responsive-tab-link:before {
content: '';
position: absolute;
left: 5px;
top: 8px;
left: 10px;
top: 7px;
height: .125em;
width: 14px;
border-bottom: 0.125em solid #767676;
border-top: 0.375em double #767676;
}
.responsive-tab .responsive-tab-link:hover span:before {
.responsive-tab .responsive-tab-link:hover:before {
border-color: #BC2A4D;
}
.responsive-tab.activetab .responsive-tab-link span:before {
.responsive-tab.activetab .responsive-tab-link:before {
border-color: #23649F;
}
.responsive-tab.activetab .responsive-tab-link:hover span:before {
.responsive-tab.activetab .responsive-tab-link:hover:before {
border-color: #115098;
}
#tabs .dropdown {
top: 18px;
margin-right: -1px;
#tabs .dropdown, #minitabs .dropdown {
top: 20px;
margin-right: -2px;
font-weight: normal;
}
#tabs .dropdown-right .dropdown {
margin-left: -2px;
}
#tabs .dropdown li {
display: block !important;
float: none;
background: transparent none;
padding: 0;
}
#tabs .dropdown a, #tabs .dropdown a span {
background: transparent;
display: block;
border-width: 0;
float: none;
#tabs .dropdown-contents {
list-style: none;
margin: 0;
padding: 0;
text-align: right;
}
#tabs .dropdown a span {
#tabs .dropdown li {
border-bottom: 1px dotted #DCDCDC;
}
#tabs .dropdown li:last-child {
border-bottom: none;
}
#tabs .dropdown a {
display: block;
padding: 4px 8px;
color: inherit !important;
}
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
{
#tabs {
min-width: 0;
}
text-align: right;
}
/* Main Panel

View file

@ -169,7 +169,7 @@ function parse_document(container)
ul = $this.children(),
tabs = ul.children().not('[data-skip-responsive]'),
links = tabs.children('a'),
item = ul.append('<li class="responsive-tab" style="display:none;"><a href="javascript:void(0);" class="responsive-tab-link"><span>&nbsp;</span></a><div class="dropdown tab-dropdown" style="display: none;"><div class="pointer"><div class="pointer-inner" /></div><ul class="dropdown-contents" /></div></li>').find('li.responsive-tab'),
item = ul.append('<li class="tab responsive-tab" style="display:none;"><a href="javascript:void(0);" class="responsive-tab-link">&nbsp;</a><div class="dropdown tab-dropdown" style="display: none;"><div class="pointer"><div class="pointer-inner" /></div><ul class="dropdown-contents" /></div></li>').find('li.responsive-tab'),
menu = item.find('.dropdown-contents'),
maxHeight = 0,
lastWidth = false,
@ -211,7 +211,7 @@ function parse_document(container)
for (i = total - 1; i >= 0; i --) {
tab = availableTabs.eq(i);
menu.prepend(tab.clone(true));
menu.prepend(tab.clone(true).removeClass('tab'));
tab.hide();
if ($this.height() <= maxHeight) {
menu.find('a').click(function() { check(true); });

View file

@ -29,7 +29,7 @@
<div id="tabs">
<ul>
<!-- BEGIN t_block1 -->
<li<!-- IF t_block1.S_SELECTED --> class="activetab"<!-- ENDIF -->><a href="{t_block1.U_TITLE}"><span>{t_block1.L_TITLE}</span></a></li>
<li class="tab<!-- IF t_block1.S_SELECTED --> activetab<!-- ENDIF -->"><a href="{t_block1.U_TITLE}">{t_block1.L_TITLE}</a></li>
<!-- END t_block1 -->
</ul>
</div>

View file

@ -106,7 +106,7 @@ function popup(url, width, height, name)
<div id="tabs">
<ul>
<!-- BEGIN t_block1 -->
<li<!-- IF t_block1.S_SELECTED --> class="activetab"<!-- ENDIF -->><a href="{t_block1.U_TITLE}"><span>{t_block1.L_TITLE}</span></a></li>
<li class="tab<!-- IF t_block1.S_SELECTED --> activetab<!-- ENDIF -->"><a href="{t_block1.U_TITLE}">{t_block1.L_TITLE}</a></li>
<!-- END t_block1 -->
</ul>
</div>

View file

@ -805,7 +805,7 @@ function parse_document(container)
ul = $this.children(),
tabs = ul.children().not('[data-skip-responsive]'),
links = tabs.children('a'),
item = ul.append('<li class="responsive-tab" style="display:none;"><a href="javascript:void(0);" class="responsive-tab-link"><span>&nbsp;</span></a><div class="dropdown tab-dropdown" style="display: none;"><div class="pointer"><div class="pointer-inner" /></div><ul class="dropdown-contents" /></div></li>').find('li.responsive-tab'),
item = ul.append('<li class="tab responsive-tab" style="display:none;"><a href="javascript:void(0);" class="responsive-tab-link">&nbsp;</a><div class="dropdown tab-dropdown" style="display: none;"><div class="pointer"><div class="pointer-inner" /></div><ul class="dropdown-contents" /></div></li>').find('li.responsive-tab'),
menu = item.find('.dropdown-contents'),
maxHeight = 0,
lastWidth = false,
@ -847,7 +847,7 @@ function parse_document(container)
for (i = total - 1; i >= 0; i --) {
tab = availableTabs.eq(i);
menu.prepend(tab.clone(true));
menu.prepend(tab.clone(true).removeClass('tab'));
tab.hide();
if ($this.height() <= maxHeight) {
menu.find('a').click(function() { check(true); });

View file

@ -11,7 +11,7 @@
<div id="tabs">
<ul>
<!-- BEGIN l_block1 -->
<li<!-- IF l_block1.S_SELECTED --> class="activetab"<!-- ENDIF -->><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></li>
<li class="tab<!-- IF l_block1.S_SELECTED --> activetab<!-- ENDIF -->"><a href="{l_block1.U_TITLE}">{l_block1.L_TITLE}</a></li>
<!-- END l_block1 -->
</ul>
</div>
@ -22,7 +22,7 @@
<div style="width: 100%;">
<div id="cp-menu">
<div id="navigation">
<div id="navigation" role="navigation">
<ul>
<!-- BEGIN l_block1 -->
<!-- IF l_block1.S_SELECTED -->

View file

@ -11,16 +11,16 @@
<!-- DEFINE $SHOW_PANEL = 'display-panel' -->
<!-- ENDIF -->
<div id="minitabs" class="sub-panels" data-show-panel="{$SHOW_PANEL}">
<div id="minitabs" class="sub-panels" data-show-panel="{$SHOW_PANEL}" role="tablist">
<ul>
<li id="display-panel-tab"<!-- IF not S_MERGE_VIEW --> class="activetab"<!-- ENDIF -->>
<a href="#minitabs" data-subpanel="display-panel"><span>{L_DISPLAY_OPTIONS}</span></a>
<li id="display-panel-tab" class="tab<!-- IF not S_MERGE_VIEW --> activetab<!-- ENDIF -->">
<a href="#minitabs" data-subpanel="display-panel" role="tab" aria-controls="display-panel">{L_DISPLAY_OPTIONS}</a>
</li>
<li id="split-panel-tab">
<a href="#minitabs" data-subpanel="split-panel"><span>{L_SPLIT_TOPIC}</span></a>
<li id="split-panel-tab" class="tab">
<a href="#minitabs" data-subpanel="split-panel" role="tab" aria-controls="split-panel">{L_SPLIT_TOPIC}</a>
</li>
<li id="merge-panel-tab"<!-- IF S_MERGE_VIEW --> class="activetab"<!-- ENDIF -->>
<a href="#minitabs" data-subpanel="merge-panel"><span>{L_MERGE_POSTS}</span></a>
<li id="merge-panel-tab" class="tab<!-- IF S_MERGE_VIEW --> activetab<!-- ENDIF -->">
<a href="#minitabs" data-subpanel="merge-panel" role="tab" aria-controls="merge-panel">{L_MERGE_POSTS}</a>
</li>
</ul>
</div>
@ -31,7 +31,7 @@
<div class="panel">
<div class="inner">
<fieldset id="display-panel" class="fields2">
<fieldset id="display-panel" class="fields2" role="tabpanel">
<dl>
<dt><label for="posts_per_page">{L_POSTS_PER_PAGE}{L_COLON}</label><br /><span>{L_POSTS_PER_PAGE_EXPLAIN}</span></dt>
<dd><input class="inputbox autowidth" type="number" min="1" name="posts_per_page" id="posts_per_page" size="6" value="{POSTS_PER_PAGE}" /></dd>
@ -43,7 +43,7 @@
</fieldset>
<!-- IF S_CAN_SPLIT -->
<fieldset id="split-panel" class="fields2">
<fieldset id="split-panel" class="fields2" role="tabpanel">
<p>{L_SPLIT_TOPIC_EXPLAIN}</p>
<!-- IF S_SHOW_TOPIC_ICONS -->
@ -66,7 +66,7 @@
<!-- ENDIF -->
<!-- IF S_CAN_MERGE -->
<fieldset id="merge-panel" class="fields2">
<fieldset id="merge-panel" class="fields2" role="tabpanel">
<p>{L_MERGE_TOPIC_EXPLAIN}</p>
<dl>
<dt><label for="to_topic_id">{L_MERGE_TOPIC_ID}{L_COLON}</label></dt>

View file

@ -99,19 +99,21 @@
<!-- ENDIF -->
<!-- IF not S_PRIVMSGS and not S_SHOW_DRAFTS and not $SIG_EDIT eq 1 -->
<div id="tabs" class="sub-panels" data-show-panel="<!-- IF SHOW_PANEL -->{SHOW_PANEL}<!-- ELSE -->options-panel<!-- ENDIF -->">
<div id="tabs" class="sub-panels" data-show-panel="<!-- IF SHOW_PANEL -->{SHOW_PANEL}<!-- ELSE -->options-panel<!-- ENDIF -->" role="tablist">
<ul>
<li id="options-panel-tab" class="activetab"><a href="#tabs" data-subpanel="options-panel"><span>{L_OPTIONS}</span></a></li>
<li id="options-panel-tab" class="tab activetab"><a href="#tabs" data-subpanel="options-panel" role="tab" aria-controls="options-panel"><span>{L_OPTIONS}</span></a></li>
<!-- IF S_SHOW_ATTACH_BOX -->
<li id="attach-panel-tab">
<a href="#tabs" data-subpanel="attach-panel">
<span>
{L_ATTACHMENTS} <strong id="file-total-progress"><strong id="file-total-progress-bar"></strong></strong>
</span>
<li id="attach-panel-tab" class="tab">
<a href="#tabs" data-subpanel="attach-panel" role="tab" aria-controls="attach-panel">
{L_ATTACHMENTS} <strong id="file-total-progress"><strong id="file-total-progress-bar"></strong></strong>
</a>
</li>
<!-- ENDIF -->
<!-- IF S_SHOW_POLL_BOX || S_POLL_DELETE --><li id="poll-panel-tab"><a href="#tabs" data-subpanel="poll-panel"><span>{L_ADD_POLL}</span></a></li><!-- ENDIF -->
<!-- IF S_SHOW_POLL_BOX || S_POLL_DELETE -->
<li id="poll-panel-tab" class="tab">
<a href="#tabs" data-subpanel="poll-panel" role="tab" aria-controls="poll-panel">{L_ADD_POLL}</a>
</li>
<!-- ENDIF -->
</ul>
</div>
<!-- ENDIF -->

View file

@ -5,7 +5,7 @@
<div id="tabs">
<ul>
<!-- BEGIN t_block1 -->
<li <!-- IF t_block1.S_SELECTED -->class="activetab"<!-- ENDIF -->><a href="{t_block1.U_TITLE}"><span>{t_block1.L_TITLE}</span></a></li>
<li class="tab<!-- IF t_block1.S_SELECTED --> activetab<!-- ENDIF -->"><a href="{t_block1.U_TITLE}">{t_block1.L_TITLE}</a></li>
<!-- END t_block1 -->
</ul>
</div>
@ -20,7 +20,7 @@
<div style="width: 100%;">
<div id="cp-menu">
<div id="navigation">
<div id="navigation" role="navigation">
<!-- IF S_PRIVMSGS -->
<!-- BEGIN t_block2 -->

View file

@ -684,34 +684,63 @@ ul.linklist li.small-icon > a, ul.linklist li.breadcrumbs span:first-child > a {
/* CP tabbed menu
----------------------------------------*/
.rtl #tabs {
margin: 20px 7px -1px 0;
margin-left: 0;
margin-right: 7px;
}
.rtl #tabs a {
.rtl #tabs .tab {
float: right;
}
/*.rtl #tabs a span {
float: right;
}*/
.rtl #tabs .tab > a {
margin-left: 1px;
margin-right: 0;
}
/* Mini tabbed menu used in MCP
----------------------------------------*/
.rtl #minitabs {
float: left;
margin-right: 0;
margin-left: 7px;
}
.rtl .tabs-container #minitabs {
.rtl #minitabs .tab {
float: left;
}
.rtl #minitabs li {
float: left;
.rtl #minitabs .tab > a {
margin-right: 2px;
margin-left: 0;
}
/* Responsive tabs
----------------------------------------*/
.rtl #tabs .dropdown {
margin-left: -2px;
}
.rtl #tabs .dropdown li {
text-align: left;
}
.rtl #minitabs .dropdown {
margin-left: -4px;
}
.rtl #minitabs .dropdown li {
text-align: right;
}
/* Responsive *CP navigation
----------------------------------------*/
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
{
.rtl #cp-menu, .rtl #navigation, .rtl #cp-main {
float: none;
}
}
/* UCP navigation menu
----------------------------------------*/

View file

@ -807,52 +807,54 @@ ul.cplist {
/* CP tabbed menu
----------------------------------------*/
#tabs a {
background-image: url("./images/bg_tabs1.gif");
}
#tabs a span {
background-image: url("./images/bg_tabs2.gif");
#tabs .tab > a {
background: #BACCD9;
color: #536482;
}
#tabs a:hover span {
#tabs .tab > a:hover {
background: #DDEDFB;
color: #BC2A4D;
}
#tabs .activetab a {
border-bottom-color: #CADCEB;
}
#tabs .activetab a span {
#tabs .activetab > a,
#tabs .activetab > a:hover {
background: #CADCEB;
background: -moz-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E2F2FF), color-stop(100%, #CADCEB));
background: -webkit-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
background: -o-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
background: -ms-linear-gradient(top, #E2F2FF 0%, #CADCEB 100%);
background: linear-gradient(to bottom, #E2F2FF 0%, #CADCEB 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E2F2FF', endColorstr='#CADCEB', GradientType=0 );
border-color: #CADCEB;
box-shadow: 0 1px 1px #F2F9FF inset;
color: #333333;
}
#tabs .activetab a:hover span {
#tabs .activetab > a:hover {
color: #000000;
}
/* Mini tabbed menu used in MCP
----------------------------------------*/
#minitabs li {
#minitabs .tab > a {
background-color: #E1EBF2;
}
#minitabs li.activetab {
#minitabs .activetab > a,
#minitabs .activetab > a:hover {
background-color: #F9F9F9;
}
#minitabs li.activetab a span, #minitabs li.activetab a:hover span {
color: #333333;
}
/* Responsive tabs
----------------------------------------*/
.responsive-tab .responsive-tab-link span:before {
.responsive-tab .responsive-tab-link:before {
border-color: #536482;
}
.responsive-tab .responsive-tab-link:hover span:before {
.responsive-tab .responsive-tab-link:hover:before {
border-color: #BC2A4D;
}
@ -862,35 +864,47 @@ ul.cplist {
/* Link styles for the sub-section links */
#navigation a {
color: #333;
background-color: #B2C2CF;
background-image: url("./images/bg_menu.gif");
background: #B4C4D1;
background: -moz-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
background: -webkit-gradient(left top, right top, color-stop(50%, #B4C4D1), color-stop(100%, #CADCEB));
background: -webkit-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
background: -o-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
background: -ms-linear-gradient(left, #B4C4D1 50%, #CADCEB 100%);
background: linear-gradient(to right, #B4C4D1 50%, #CADCEB 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B4C4D1', endColorstr='#CADCEB', GradientType=1 );
}
.rtl #navigation a {
background-image: url("./images/bg_menu_rtl.gif");
background-position: 0 100%;
background: #B4C4D1;
background: -moz-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
background: -webkit-gradient(left top, right top, color-stop(0%, #CADCEB), color-stop(50%, #B4C4D1));
background: -webkit-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
background: -o-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
background: -ms-linear-gradient(left, #CADCEB 0%, #B4C4D1 50%);
background: linear-gradient(to right, #CADCEB 0%, #B4C4D1 50%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#CADCEB', endColorstr='#B4C4D1', GradientType=1 );
}
#navigation a:hover {
background-image: none;
background-color: #aabac6;
background: #AABAC6;
color: #BC2A4D;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
#navigation #active-subsection a {
background: #F9F9F9;
color: #D31141;
background-color: #F9F9F9;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
#navigation #active-subsection a:hover {
color: #D31141;
}
@media only screen and (max-width: 700px), only screen and (max-device-width: 700px)
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
{
#navigation a, .rtl #navigation a {
background-image: none;
background: #B2C2CF;
}
}
@ -1144,7 +1158,7 @@ input.disabled {
border-color: #FFF transparent;
}
.dropdown-extended .pointer-inner, #minitabs .pointer-inner {
.dropdown-extended .pointer-inner {
border-color: #F1F8FF transparent;
}
@ -1170,10 +1184,6 @@ ul.linklist li.responsive-menu a.responsive-menu-link:hover:before, ul.linklist
border-color: #DCDCDC;
}
#minitabs .dropdown-contents {
background-color: #F1F8FF;
}
/* Notifications
---------------------------------------- */

View file

@ -97,117 +97,82 @@ ul.cplist {
}
.tabs-container:after {
display: block;
clear: both;
content: '';
display: block;
}
/* CP tabbed menu
/* CP tabs shared
----------------------------------------*/
#tabs {
#tabs, #minitabs {
line-height: normal;
margin: 20px 0 -1px 7px;
*overflow: hidden;
}
#tabs ul {
margin:0;
padding: 0;
#tabs > ul, #minitabs > ul {
list-style: none;
}
#tabs ul:after {
content: '';
display: block;
clear: both;
}
#tabs li {
display: inline;
margin: 0;
padding: 0;
font-size: 1em;
font-weight: bold;
position: relative;
}
#tabs a {
#tabs > ul:after, #minitabs > ul:after {
clear: both;
content: '';
display: block;
}
#tabs .tab, #minitabs .tab {
display: inline-block;
float: left;
background: none no-repeat 0% -35px;
margin: 0 1px 0 0;
padding: 0 0 0 5px;
text-decoration: none;
font-size: 1em;
font-weight: bold;
line-height: 14px;
}
#tabs .tab > a, #minitabs .tab > a {
display: block;
padding: 5px 9px;
position: relative;
text-decoration: none;
white-space: nowrap;
cursor: pointer;
}
#tabs a span {
float: left;
display: block;
background: none no-repeat 100% -35px;
padding: 6px 10px 6px 5px;
white-space: nowrap;
/* CP tabbed menu
----------------------------------------*/
#tabs {
margin: 20px 0 0 7px;
}
#tabs .activetab a {
background-position: 0 0;
border-bottom: 1px solid transparent;
#tabs .tab > a {
border: 1px solid transparent;
border-radius: 4px 4px 0 0;
margin: 1px 1px 0 0;
}
#tabs .activetab a span {
background-position: 100% 0;
#tabs .activetab > a {
margin-top: 0;
padding-bottom: 7px;
}
#tabs a:hover {
background-position: 0 -70px;
}
#tabs a:hover span {
background-position:100% -70px;
}
#tabs .activetab a:hover {
background-position: 0 0;
}
#tabs .activetab a:hover span {
background-position: 100% 0;
}
/* Mini tabbed menu used in MCP
----------------------------------------*/
#minitabs {
line-height: normal;
margin: -20px 7px 0 0;
}
.tabs-container #minitabs {
float: right;
margin-top: 19px;
margin: 15px 7px 0 0;
max-width: 50%;
}
#minitabs ul {
margin:0;
padding: 0;
list-style: none;
#minitabs .tab {
float: right;
}
#minitabs li {
display: block;
float: right;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
padding: 5px 10px 4px 10px;
font-size: 1em;
font-weight: bold;
#minitabs .tab > a {
border-radius: 5px 5px 0 0;
margin-left: 2px;
}
#minitabs a {
}
#minitabs a:hover {
#minitabs .tab > a:hover {
text-decoration: none;
}
@ -217,8 +182,8 @@ ul.cplist {
position: relative;
}
.responsive-tab .responsive-tab-link span {
display: inline-block;
.responsive-tab > a.responsive-tab-link {
display: block;
font-size: 16px;
position: relative;
width: 16px;
@ -226,80 +191,41 @@ ul.cplist {
text-decoration: none;
}
#minitabs .responsive-tab .responsive-tab-link span {
display: block;
}
.responsive-tab .responsive-tab-link span:before {
.responsive-tab .responsive-tab-link:before {
content: '';
position: absolute;
left: 5px;
top: 8px;
left: 10px;
top: 7px;
height: .125em;
width: 14px;
border-bottom: 0.125em solid transparent;
border-top: 0.375em double transparent;
}
#minitabs .responsive-tab .responsive-tab-link span:before {
left: 0;
top: 2px;
}
#tabs ul, #minitabs ul {
position: relative;
}
#tabs .dropdown, #minitabs .dropdown {
top: 29px;
margin-right: -1px;
top: 20px;
margin-right: -2px;
font-size: 1.1em;
font-weight: normal;
}
#minitabs .dropdown {
top: 18px;
margin-right: -4px;
}
#tabs .dropdown-up .dropdown, #minitabs .dropdown-up .dropdown {
bottom: -5px;
bottom: 20px;
top: auto;
}
#minitabs .dropdown-up .dropdown {
bottom: 18px;
}
#tabs .dropdown-right .dropdown, #minitabs .dropdown-right .dropdown {
margin-left: -41px;
}
#tabs .dropdown li, #minitabs .dropdown li {
display: block !important;
background: transparent none;
padding: 0;
}
.tabs-container #minitabs .dropdown a span {
display: block;
}
#tabs .dropdown a, #tabs .dropdown a span, #minitabs .dropdown a, #minitabs .dropdown a span {
background: transparent;
float: none;
margin: 0;
padding: 0;
#tabs .dropdown li {
text-align: right;
}
.tabs-container #minitabs .dropdown a span {
#minitabs .dropdown li {
text-align: left;
}
#tabs .dropdown a span, #minitabs .dropdown a span {
padding: 5px 8px;
color: inherit !important;
}
/* UCP navigation menu
----------------------------------------*/
/* Container for sub-navigation list */
@ -309,15 +235,15 @@ ul.cplist {
}
#navigation ul {
list-style:none;
list-style: none;
}
/* Default list state */
#navigation li {
display: inline;
font-weight: bold;
margin: 1px 0;
padding: 0;
font-weight: bold;
display: inline;
}
/* Link styles for the sub-section links */
@ -326,18 +252,10 @@ ul.cplist {
padding: 5px;
margin: 1px 0;
text-decoration: none;
font-weight: bold;
background: transparent none repeat-y 100% 0;
}
#navigation a:hover {
text-decoration: none;
background-image: none;
}
#navigation #active-subsection a {
display: block;
background-image: none;
}
/* Preferences pane layout

Binary file not shown.

Before

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 345 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 420 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 112 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 B