2017-04-28 21:49:01 +02:00
|
|
|
/**
|
|
|
|
* Copyright JS Foundation and other contributors, http://js.foundation
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
**/
|
|
|
|
|
|
|
|
#user-settings-tabs-container {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 120px;
|
|
|
|
background: #f3f3f3;
|
|
|
|
}
|
|
|
|
#user-settings-tabs-content {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 120px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
padding: 0;
|
|
|
|
h3:not(:first-child) {
|
|
|
|
border-top: 1px solid $secondary-border-color;
|
|
|
|
margin-top: 15px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
label {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 100px;
|
2017-11-22 00:31:41 +01:00
|
|
|
vertical-align: top;
|
|
|
|
margin-top: 5px;
|
2017-04-28 21:49:01 +02:00
|
|
|
input {
|
|
|
|
vertical-align: top;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2017-10-19 22:38:53 +02:00
|
|
|
input, div.uneditable-input {
|
|
|
|
//margin-bottom: 0;
|
|
|
|
}
|
|
|
|
div.uneditable-input {
|
|
|
|
position: relative;
|
2017-04-28 21:49:01 +02:00
|
|
|
}
|
|
|
|
input[type='number'] {
|
|
|
|
width: 60px;
|
|
|
|
}
|
2017-12-04 12:42:44 +01:00
|
|
|
h4 {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2017-04-28 21:49:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#user-settings-tab-view {
|
|
|
|
padding: 8px 20px 20px;
|
|
|
|
}
|
|
|
|
.user-settings-row {
|
|
|
|
padding: 5px 10px 2px;
|
|
|
|
}
|
2017-10-19 22:38:53 +02:00
|
|
|
.user-settings-section {
|
|
|
|
position: relative;
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
clear: both;
|
|
|
|
}
|
2018-01-10 18:37:41 +01:00
|
|
|
.uneditable-input, input, textarea {
|
2017-10-19 22:38:53 +02:00
|
|
|
width: calc(100% - 150px);
|
|
|
|
}
|
2018-01-10 18:37:41 +01:00
|
|
|
textarea {
|
|
|
|
resize: none;
|
|
|
|
height: 10em;
|
|
|
|
}
|
2017-10-19 22:38:53 +02:00
|
|
|
}
|