Merge branch 'master' of gitlab.cip.ifi.lmu.de:jost/UniWorX

This commit is contained in:
SJost 2018-08-03 10:05:00 +02:00
commit 59f36d92f0
3 changed files with 50 additions and 48 deletions

View File

@ -33,6 +33,7 @@ stanzas:
- LOG_ALL - LOG_ALL
- PWFILE - PWFILE
- CRYPTOID_KEYFILE - CRYPTOID_KEYFILE
- IP_FROM_HEADER
# Use the following to automatically copy your bundle upon creation via `yesod # Use the following to automatically copy your bundle upon creation via `yesod
# keter`. Uses `scp` internally, so you can set it to a remote destination # keter`. Uses `scp` internally, so you can set it to a remote destination

View File

@ -32,6 +32,7 @@ stanzas:
- LOG_ALL - LOG_ALL
- PWFILE - PWFILE
- CRYPTOID_KEYFILE - CRYPTOID_KEYFILE
- IP_FROM_HEADER
# Use the following to automatically copy your bundle upon creation via `yesod # Use the following to automatically copy your bundle upon creation via `yesod
# keter`. Uses `scp` internally, so you can set it to a remote destination # keter`. Uses `scp` internally, so you can set it to a remote destination

View File

@ -2,7 +2,12 @@
position: relative; position: relative;
display: inline-block; display: inline-block;
.tooltip__handle { .hidden {
display: none;
}
}
.tooltip__handle {
background-color: var(--color-dark); background-color: var(--color-dark);
border-radius: 50%; border-radius: 50%;
height: 1.5rem; height: 1.5rem;
@ -14,9 +19,9 @@
text-align: center; text-align: center;
cursor: default; cursor: default;
margin: 0 10px; margin: 0 10px;
} }
.tooltip__content { .tooltip__content {
position: absolute; position: absolute;
top: -10px; top: -10px;
transform: translateY(-100%); transform: translateY(-100%);
@ -48,11 +53,6 @@
left: 10px; left: 10px;
bottom: -8px; bottom: -8px;
} }
}
.hidden {
display: none;
}
} }
@media (max-width: 768px) { @media (max-width: 768px) {