kitematic/styles/container-settings.less

172 строки
3.3 KiB
Plaintext
Исходник Обычный вид История

.details-panel .settings {
display: flex;
flex: 1 auto;
2015-06-11 21:01:53 +03:00
flex-direction: column;
background-color: white;
margin: 1rem;
margin-bottom: 0;
border: 1px solid @color-divider;
border-radius: @border-radius;
.settings-menu {
2015-06-11 21:01:53 +03:00
display: flex;
flex: 0 auto;
2015-06-11 21:01:53 +03:00
height: 40px;
border-bottom: 1px solid @color-divider;
ul {
display: flex;
2015-06-11 21:01:53 +03:00
flex-direction: row;
width: 100%;
justify-content: flex-end;
a {
color: @gray-normal;
cursor: default;
outline: none;
&.active {
li {
font-weight: 500;
2015-06-12 00:30:48 +03:00
border-bottom: 3px solid @brand-primary;
2015-06-11 21:01:53 +03:00
color: @gray-darkest;
}
}
&:hover {
text-decoration: none;
li {
cursor: default;
2015-06-11 21:01:53 +03:00
color: @gray-darkest;
}
}
&:focus {
text-decoration: none;
}
}
li {
2015-06-11 21:01:53 +03:00
transition: all 140ms;
vertical-align: middle;
2015-06-11 21:01:53 +03:00
padding: 0.9rem 1.6rem;
display: flex;
flex-direction: row;
}
}
}
.settings-panel {
2015-06-11 21:01:53 +03:00
padding: 2rem;
flex: 1 auto;
overflow-x: hidden;
2015-06-11 21:01:53 +03:00
h3 {
margin-top: 0;
color: @gray-darker;
font-weight: 400;
font-size: 18px;
}
.settings-section {
2015-06-11 21:01:53 +03:00
margin-bottom: 4rem;
}
.container-name {
2015-06-11 21:01:53 +03:00
margin-bottom: 2rem;
input {
2015-06-11 21:01:53 +03:00
width: 100%;
max-width: 500px;
}
p {
font-weight: 300;
margin-top: 5px;
color: @gray-lighter;
font-size: 12px;
strong {
font-weight: 500;
}
}
}
.env-vars-labels {
width: 100%;
2015-06-11 21:32:31 +03:00
font-size: 14px;
color: @gray-lighter;
font-weight: 500;
margin-left: 5px;
margin-bottom: 5px;
margin-top: 20px;
.label-key {
display: inline-block;
margin-right: 30px;
width: 30%;
}
.label-val {
display: inline-block;
width: 50%;
}
}
.env-vars {
margin-bottom: 20px;
.keyval-row {
margin-bottom: 5px;
}
input {
margin-right: 30px;
&.key {
width: 30%;
}
&.val {
width: 50%;
}
}
}
.table {
&.ports {
input {
width: 50px;
border: 0;
}
tr {
td {
&:first-child {
width: 120px;
}
&.bind {
width: 190px;
}
&.error {
text-align: left;
color: red;
padding-left: 10px;
padding-right: 10px;
border: 0;
}
}
}
}
&.volumes {
max-width: 100%;
}
2015-06-11 21:32:31 +03:00
color: @gray-normal;
tr {
&:first-child {
td {
border: none;
}
}
2015-06-11 21:32:31 +03:00
td {
border-color: @color-divider;
}
}
2015-06-11 21:32:31 +03:00
th {
font-size: 14px;
color: @gray-lighter;
font-weight: 500;
border: none;
}
.btn {
margin-right: 0.5rem;
}
}
.checkboxes {
padding: 1rem 0;
p {
color: @gray-normal;
}
input[type="checkbox"] {
margin-right: 0.8rem;
}
}
}
}