Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/techsneeze/dmarcts-report-viewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjnew-gh <github@hazelden.ca>2021-04-05 09:31:31 +0300
committerjnew-gh <github@hazelden.ca>2021-04-05 09:31:31 +0300
commit59500036db9196b6315b4a5278e51116d9f0a0cb (patch)
treeac34590d48b49655d86234e9831da036de7da042 /default.css
parenteb5de8f7dd7e92be2302b24f3f167a32201f3014 (diff)
Add Report List Alignment Status Circles
Add Report List columns for status circles. Change status cirlces from Unicode font symbol to circles created in css. Add title messages in Report List
Diffstat (limited to 'default.css')
-rw-r--r--default.css73
1 files changed, 53 insertions, 20 deletions
diff --git a/default.css b/default.css
index d87d7e2..4ac84a5 100644
--- a/default.css
+++ b/default.css
@@ -81,12 +81,27 @@ table.reportlist td {
padding:0px 10px;
}
+table.reportlist td.circle_container {
+ padding-left: 0px;
+ padding-right: 0px;
+}
+
+table.reportlist td span.status_sort_key {
+ display: none;
+}
+
table.reportlist th {
padding:3px;
position: -webkit-sticky; /* Safari */
position: sticky;
top: 0;
background-color: var(--header);
+ white-space: nowrap;
+}
+
+table.reportlist th.circle_container {
+ padding-left: 0px;
+ padding-right: 0px;
}
table.reportlist tr:hover {
@@ -207,39 +222,57 @@ table.reportdata tr.yellow {
text-align: right;
}
-.circle_black:before {
- content: ' \25CF';
- font-size: 25px;
- color: var(--text);
+.circle {
+ width: 7px;
+ height: 14px;
+ margin-top: 4px;
+ margin-bottom: 2px;
+}
+
+.circle_right {
+ border-bottom-right-radius: 500px;
+ border-top-right-radius: 500px;
+ border-left: 0;
+ display: inline-block;
+}
+
+.circle_left {
+ border-bottom-left-radius: 500px;
+ border-top-left-radius: 500px;
+ border-right: 0;
+ display: inline-block;
+}
+
+.circle_yellow {
+ width: 6px;
+ height: 12px;
+ background-color: yellow;
+ border-top: 1px solid var(--selected);
+ border-right: 1px solid var(--selected);
+ border-bottom: 1px solid var(--selected);
+
}
-.circle_lime:before {
- content: ' \25CF';
- font-size: 25px;
- color: var(--green);
+.circle_green {
+ background-color: lime;
}
-.circle_red:before {
- content: ' \25CF';
- font-size: 25px;
- color: var(--red);
+.circle_orange {
+ background-color: orange;
}
-.circle_yellow:before {
- content: ' \25CF';
- font-size: 25px;
- color: var(--yellow);
+.circle_red {
+ background-color: red;
}
-.circle_orange:before {
- content: ' \25CF';
- font-size: 25px;
- color: var(--orange);
+.circle_black {
+ background-color: var(--text);
}
.asc_triangle:after {
content: ' \25B2';
font-size: 15px;
+ vertical-align: top;
}
.desc_triangle:after {