Skip to content
Snippets Groups Projects
Commit 4186ee97 authored by ANDiTKO's avatar ANDiTKO
Browse files

* Fixed Issue #2347487: Primary tabs vanish if width too small

* Fixed resizing on click for some form elements in google chrome.
parent 15591d20
No related branches found
No related tags found
No related merge requests found
...@@ -23,6 +23,8 @@ body.adminimal-theme *::-moz-focus-inner { ...@@ -23,6 +23,8 @@ body.adminimal-theme *::-moz-focus-inner {
} }
body.adminimal-theme * { body.adminimal-theme * {
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box; box-sizing: content-box;
} }
...@@ -314,13 +316,13 @@ strong { ...@@ -314,13 +316,13 @@ strong {
* Tabs. * Tabs.
*/ */
ul.primary { ul.primary {
border-bottom: medium none; border-bottom: 0;
float: right; float: left;
clear: both;
font-size: 0.923em; font-size: 0.923em;
height: 2.6em; height: auto;
margin: 12px 0 0; margin: 2px 0 0;
padding-top: 0; padding-top: 0;
text-transform: uppercase;
} }
ul.primary li { ul.primary li {
...@@ -377,8 +379,8 @@ ul.secondary { ...@@ -377,8 +379,8 @@ ul.secondary {
} }
ul.secondary li { ul.secondary li {
margin: 0 5px; margin: 5px;
float: none;/* LTR */ float: left;/* LTR */
} }
ul.secondary li a { ul.secondary li a {
...@@ -773,6 +775,7 @@ input.form-autocomplete,input.form-text,input.form-file,textarea.form-textarea,s ...@@ -773,6 +775,7 @@ input.form-autocomplete,input.form-text,input.form-file,textarea.form-textarea,s
background: #fff; background: #fff;
color: #333; color: #333;
vertical-align: baseline; vertical-align: baseline;
box-sizing: inherit;
} }
/* Fix webkit select on OS X see issue #2351221 */ /* Fix webkit select on OS X see issue #2351221 */
...@@ -2260,6 +2263,9 @@ table.update tr.error td, table.update tr.error th { ...@@ -2260,6 +2263,9 @@ table.update tr.error td, table.update tr.error th {
.form-textarea-wrapper textarea { .form-textarea-wrapper textarea {
resize:vertical; resize:vertical;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
} }
div.krumo-root { div.krumo-root {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment