##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r4106:5036fcea default
r5365:ae8a165b default
Show More
deform.less
145 lines | 2.4 KiB | text/x-less | LessCssLexer
dan
forms: add deform for integration settings forms
r518 .deform {
* {
box-sizing: border-box;
}
.required:after {
color: #e32;
content: '*';
display:inline;
}
.control-label {
deform: updated style
r4106 width: 220px;
pull-request: extended default reviewers functionality....
r1769 padding: 10px 0px;
dan
forms: add deform for integration settings forms
r518 float: left;
}
.control-inputs {
deform: updated style
r4106 min-width: 400px;
dan
forms: add deform for integration settings forms
r518 float: left;
}
deform: updated style
r4106 .form-group .radio,
.form-group .checkbox {
dan
forms: add deform for integration settings forms
r518 position: relative;
display: block;
deform: updated style
r4106 padding: 10px 0;
margin-bottom: 0;
dan
forms: add deform for integration settings forms
r518 }
.form-group {
clear: left;
dan
account: convert change password form to colander schema and fix bug...
r665 margin-bottom: 20px;
&:after { /* clear fix */
content: " ";
display: block;
clear: left;
}
dan
forms: add deform for integration settings forms
r518 }
.form-control {
width: 100%;
Liviu
Multiple changes for the navigation and buttons
r3570 padding: 0.7em;
dan
integrations: refactor/cleanup + features, fixes #4181...
r731 border: 1px solid #979797;
border-radius: 2px;
}
.form-control.select2-container {
padding: 0; /* padding already applied in .drop-menu a */
}
.form-control.readonly {
background: #eeeeee;
cursor: not-allowed;
dan
forms: add deform for integration settings forms
r518 }
deform: updated style
r4106 .alert {
margin: 10px 0;
}
dan
forms: add deform for integration settings forms
r518 .error-block {
color: red;
dan
account: convert change password form to colander schema and fix bug...
r665 margin: 0;
}
.help-block {
margin: 0;
dan
forms: add deform for integration settings forms
r518 }
.deform-seq-container .control-inputs {
width: 100%;
}
.deform-seq-container .deform-seq-item-handle {
width: 8.3%;
float: left;
}
.deform-seq-container .deform-seq-item-group {
width: 91.6%;
float: left;
}
.form-control {
input {
height: 40px;
}
input[type=checkbox], input[type=radio] {
height: auto;
}
select {
height: 40px;
}
}
dan
account: convert change password form to colander schema and fix bug...
r665 .form-control.select2-container {
deform: updated style
r4106
dan
account: convert change password form to colander schema and fix bug...
r665 }
dan
forms: add deform for integration settings forms
r518
dan
reviewers: add repo review rule models and expose default...
r821 .deform-full-field-sequence.control-inputs {
width: 100%;
dan
forms: add deform for integration settings forms
r518 }
dan
reviewers: add repo review rule models and expose default...
r821 .deform-table-sequence {
.deform-seq-container {
.deform-seq-item {
margin: 0;
label {
display: none;
}
.panel-heading {
display: none;
}
.deform-seq-item-group > .panel {
padding: 0;
margin: 5px 0;
border: none;
&> .panel-body {
padding: 0;
}
}
&:first-child label {
display: block;
}
}
}
}
.deform-table-2-sequence {
.deform-seq-container {
.deform-seq-item {
.form-group {
width: 45% !important; padding: 0 2px; float: left; clear: none;
}
}
}
}
.deform-table-3-sequence {
.deform-seq-container {
.deform-seq-item {
.form-group {
width: 30% !important; padding: 0 2px; float: left; clear: none;
}
}
}
}
dan
forms: add deform for integration settings forms
r518 }