Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.7.x] Admin login language field fix #12442

Merged
merged 2 commits into from
Oct 17, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 10 additions & 20 deletions administrator/templates/isis/css/template-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -5951,18 +5951,6 @@ fieldset.radio.btn-group {
}
/* Input Prepend Chosen Select Boxes */
/* Common styling for Chosen Select Boxes with Input Prepend/Append */
.input-prepend .chzn-container-single .chzn-single,
.input-append .chzn-container-single .chzn-single {
border-color: #cccccc;
height: 26px;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.input-prepend .chzn-container-single .chzn-drop,
.input-append .chzn-container-single .chzn-drop {
border-color: #cccccc;
}
.input-prepend > .add-on,
.input-append > .add-on {
vertical-align: top;
Expand Down Expand Up @@ -7254,16 +7242,18 @@ a:focus {
.view-login .input-medium {
width: 176px;
}
.navbar-inverse {
color: #333333;
.view-login #lang_chzn {
width: 233px !important;
}
.login .chzn-single {
width: 222px !important;
.view-login #lang_chzn .chzn-single div {
width: 43px;
}
.login .chzn-container,
.login .chzn-drop {
width: 230px !important;
max-width: 230px !important;
.view-login .input-prepend .add-on,
.view-login .controls .btn-group > .btn {
margin-left: 0;
}
.navbar-inverse {
color: #333333;
}
.login .btn-large {
margin-top: 15px;
Expand Down
30 changes: 10 additions & 20 deletions administrator/templates/isis/css/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -5951,18 +5951,6 @@ fieldset.radio.btn-group {
}
/* Input Prepend Chosen Select Boxes */
/* Common styling for Chosen Select Boxes with Input Prepend/Append */
.input-prepend .chzn-container-single .chzn-single,
.input-append .chzn-container-single .chzn-single {
border-color: #cccccc;
height: 26px;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.input-prepend .chzn-container-single .chzn-drop,
.input-append .chzn-container-single .chzn-drop {
border-color: #cccccc;
}
.input-prepend > .add-on,
.input-append > .add-on {
vertical-align: top;
Expand Down Expand Up @@ -7254,16 +7242,18 @@ a:focus {
.view-login .input-medium {
width: 176px;
}
.navbar-inverse {
color: #333333;
.view-login #lang_chzn {
width: 233px !important;
}
.login .chzn-single {
width: 222px !important;
.view-login #lang_chzn .chzn-single div {
width: 43px;
}
.login .chzn-container,
.login .chzn-drop {
width: 230px !important;
max-width: 230px !important;
.view-login .input-prepend .add-on,
.view-login .controls .btn-group > .btn {
margin-left: 0;
}
.navbar-inverse {
color: #333333;
}
.login .btn-large {
margin-top: 15px;
Expand Down
17 changes: 9 additions & 8 deletions administrator/templates/isis/less/template.less
Original file line number Diff line number Diff line change
Expand Up @@ -136,21 +136,22 @@ a:focus {
.input-medium {
width: 176px;
}
#lang_chzn {
width: 233px !important;
.chzn-single div {
width:43px;
}
}
.input-prepend .add-on, .controls .btn-group > .btn {
margin-left:0;
}
}

.navbar-inverse {
color: @textColor;
}

.login {
.chzn-single {
width: 222px !important;
}
.chzn-container,
.chzn-drop {
width: 230px !important;
max-width: 230px !important;
}
.btn-large {
margin-top: 15px;
}
Expand Down
6 changes: 0 additions & 6 deletions media/jui/less/bootstrap-extended.less
Original file line number Diff line number Diff line change
Expand Up @@ -377,15 +377,9 @@ fieldset.radio.btn-group {
/* Common styling for Chosen Select Boxes with Input Prepend/Append */
.input-prepend .chzn-container-single .chzn-single,
.input-append .chzn-container-single .chzn-single {
border-color: @inputBorder;
height: 26px;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.input-prepend .chzn-container-single .chzn-drop,
.input-append .chzn-container-single .chzn-drop {
border-color: @inputBorder;
}
.input-prepend > .add-on,
.input-append > .add-on {
Expand Down