2018-08-23 15:32:42 +03:00
|
|
|
$footer-height: 65px;
|
2018-08-15 09:11:13 +03:00
|
|
|
|
2018-01-25 21:15:16 +03:00
|
|
|
#body-public {
|
2018-03-07 13:05:23 +03:00
|
|
|
.header-right {
|
2018-01-25 21:15:16 +03:00
|
|
|
|
2018-04-05 13:21:39 +03:00
|
|
|
#header-primary-action a {
|
2018-06-03 12:24:54 +03:00
|
|
|
color: var(--color-primary-text);
|
2018-03-07 13:05:23 +03:00
|
|
|
}
|
2018-01-25 21:15:16 +03:00
|
|
|
|
2018-03-07 13:05:23 +03:00
|
|
|
#header-secondary-action {
|
2018-04-05 14:11:55 +03:00
|
|
|
ul li {
|
|
|
|
min-width: 270px;
|
|
|
|
}
|
2019-11-07 14:28:43 +03:00
|
|
|
#header-actions-toggle {
|
|
|
|
background-color: transparent;
|
|
|
|
border-color: transparent;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2019-11-07 23:30:56 +03:00
|
|
|
#external-share-menu-item {
|
2018-04-05 14:11:55 +03:00
|
|
|
form {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
#save-button-confirm {
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
2018-04-05 13:21:39 +03:00
|
|
|
}
|
2018-03-07 13:05:23 +03:00
|
|
|
}
|
|
|
|
}
|
2018-04-05 13:21:39 +03:00
|
|
|
|
|
|
|
#content {
|
2018-08-15 09:11:13 +03:00
|
|
|
// 100% - footer
|
|
|
|
min-height: calc(100% - #{$footer-height});
|
|
|
|
|
2018-04-05 13:21:39 +03:00
|
|
|
}
|
|
|
|
|
2018-08-03 20:21:10 +03:00
|
|
|
/** don't apply content header padding on the base layout */
|
|
|
|
&.layout-base #content {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
|
|
|
|
2018-04-05 13:21:39 +03:00
|
|
|
/* force layout to make sure the content element's height matches its contents' height */
|
|
|
|
.ie #content {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2018-07-24 11:29:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
p.info {
|
|
|
|
margin: 20px auto;
|
|
|
|
text-shadow: 0 0 2px rgba(0, 0, 0, .4);
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
p.info, form fieldset legend,
|
|
|
|
#datadirContent label,
|
|
|
|
form fieldset .warning-info,
|
|
|
|
form input[type='checkbox']+label {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2018-08-15 09:11:13 +03:00
|
|
|
|
|
|
|
/* public footer */
|
|
|
|
footer {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: $footer-height;
|
2018-08-23 15:32:42 +03:00
|
|
|
flex-direction: column;
|
2018-08-15 09:11:13 +03:00
|
|
|
p {
|
2018-08-23 15:32:42 +03:00
|
|
|
text-align: center;
|
2018-08-15 09:11:13 +03:00
|
|
|
color: var(--color-text-lighter);
|
|
|
|
a {
|
|
|
|
color: var(--color-text-lighter);
|
2018-10-02 00:29:46 +03:00
|
|
|
font-weight: bold;
|
2018-10-01 12:14:31 +03:00
|
|
|
white-space: nowrap;
|
|
|
|
/* increasing clickability to more than the text height */
|
2018-11-09 23:23:02 +03:00
|
|
|
padding: 10px;
|
|
|
|
margin: -10px;
|
2018-10-01 12:14:31 +03:00
|
|
|
line-height: 200%;
|
2018-08-15 09:11:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-07 13:05:23 +03:00
|
|
|
}
|