Skip to content
Snippets Groups Projects
Commit 0afb5edc authored by Arkerthan's avatar Arkerthan
Browse files

Move gui/ styles to CSS module

parent 54d69a42
No related branches found
No related tags found
1 merge request!8580Move CSS files in their own directory Part 2
File moved
ul.choicesStrip {
display: inline;
list-style-type: none;
padding: 0mm;
margin-left: 0em;
}
ul.choicesStrip li {
display: inline;
}
ul.choicesStrip li + li:before {
content: " | ";
}
a.disabled {
color: white;
pointer-events: none;
cursor: default;
}
File moved
File moved
File moved
/* TODO unify tooltip systems */
.textWithTooltip {
position: relative;
display: inline-block;
text-decoration: underline;
text-decoration-color: lightblue;
}
.textWithTooltip .tooltip {
visibility: hidden;
display: block;
font-size: smaller;
width: 20em;
margin-left: -10em;
background-color: rgb(29, 30, 32);
text-align: center;
border-radius: 3px;
padding: 3px;
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
}
.textWithTooltip .tooltip ul {
margin-left: 5px;
margin-right: 0px;
padding-left: 10px;
padding-right: 0px;
text-align: left;
}
.textWithTooltip .tooltip::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.textWithTooltip:hover .tooltip {
visibility: visible;
opacity: 1;
transition-delay: 0.3s;
}
.textWithTooltip {
position: relative;
display: inline-block;
text-decoration: underline;
text-decoration-color: lightblue;
}
.textWithTooltip .tooltip {
visibility: hidden;
display: block;
font-size: smaller;
width: 20em;
margin-left: -10em;
background-color: rgb(29, 30, 32);
text-align: center;
border-radius: 3px;
padding: 3px;
position: absolute;
z-index: 1;
bottom: 100%;
left: 50%;
}
.textWithTooltip .tooltip ul {
margin-left: 5px;
margin-right: 0px;
padding-left: 10px;
padding-right: 0px;
text-align: left;
}
.textWithTooltip .tooltip::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.textWithTooltip:hover .tooltip {
visibility: visible;
opacity: 1;
transition-delay: 0.3s;
}
ul.choicesStrip {
display: inline;
list-style-type: none;
padding: 0mm;
margin-left: 0em;
}
ul.choicesStrip li {
display: inline;
}
ul.choicesStrip li + li:before {
content: " | ";
}
a.disabled {
color: white;
pointer-events: none;
cursor: default;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment