Skip to content
Snippets Groups Projects

Setup CI and fix install 1.0.x #3446118

All threads resolved!
Files
7
+ 25
25
@@ -11,38 +11,38 @@
}
.date {
font-weight: bold;
color: brown;
font-weight: bold;
}
.cache-designition {
position: relative;
margin-left: 20px;
display: block;
margin-left: 20px;
}
/*Common tooltip styles*/
/* Common tooltip styles */
.cache_tooltip {
font-weight: bold;
position: relative;
z-index: 998;
display: inline-block;
float: right;
width: 18px;
height: 20px;
z-index: 998;
line-height: 1em;
padding: 3px;
margin: 1px;
padding: 3px;
font-weight: bold;
line-height: 1em;
}
.cache_tooltiptext {
visibility: hidden;
border-radius: 6px;
position: absolute;
font-weight: normal;
font-size: 12px;
z-index: 999;
visibility: hidden;
width: max-content;
padding: 2px;
z-index: 999;
border-radius: 6px;
font-size: 12px;
font-weight: normal;
}
.cache_tooltip:hover .cache_tooltiptext {
visibility: visible;
@@ -51,48 +51,48 @@
color: red !important;
}
.cache_caught .cache_tooltiptext {
background-color: #ffe2ec !important; ;
background-color: #ffe2ec !important;
}
/*Cached styles*/
/* Cached styles */
.cached-wrapper {
border: 1px solid blue;
margin: 5px 2px;
border: 1px solid blue;
}
.cached-item {
background-color: #a5c8f9;
color: blue;
background-color: #a5c8f9;
}
.cached-item .cache_tooltiptext {
background-color: #babeff;
color: black;
background-color: #babeff;
}
/*Lazy styles*/
/* Lazy styles */
.lazy-wrapper {
border: 1px solid orange;
margin: 5px 2px;
border: 1px solid orange;
}
.lazy-item {
background-color: #ddddddba;
color: orange;
background-color: #ddddddba;
}
.lazy-item .cache_tooltiptext {
background-color: #fff8b2;
color: black;
background-color: #fff8b2;
}
/*Base styles*/
/* Base styles */
.base-wrapper {
border: 1px solid green;
margin: 5px 2px;
border: 1px solid green;
}
.base-item {
background-color: #ddddddba;
color: green;
background-color: #ddddddba;
}
.base-item .cache_tooltiptext {
background-color: #b6ffc4;
color: black;
background-color: #b6ffc4;
}
Loading