aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/Mageia/web/style.css70
1 files changed, 70 insertions, 0 deletions
diff --git a/extensions/Mageia/web/style.css b/extensions/Mageia/web/style.css
index daffc088a..6e00540bb 100644
--- a/extensions/Mageia/web/style.css
+++ b/extensions/Mageia/web/style.css
@@ -12,6 +12,13 @@ body {
background-color: #fff !important;
}
+body.bz_bug form#changeform {
+ max-width: 1024px;
+ margin: 1em auto;
+ border: 1px solid black;
+ padding: 0.5em 1em;
+}
+
#create_account {
border: solid 1px;
background-color: #ffd386;
@@ -35,6 +42,44 @@ body {
background-color: #fff !important;
}
+div.bz_comment {
+ padding: 0px;
+}
+
+div.bz_first_comment_head, div.bz_comment_head {
+ background-color: lightgray;
+ font-weight: normal;
+ padding: 0.8em 0.5em;
+}
+
+span.vcard, span.vcard a {
+ color: inherit;
+ font-weight: bold;
+}
+
+span.bz_comment_actions {
+ visibility: hidden;
+ margin: 0;
+}
+
+span.bz_comment_actions > * {
+ visibility: visible;
+}
+
+span.bz_comment_actions a,
+ul.bz_collapse_expand_comments li a {
+ background-color: #e8e8e8;
+ color: black;
+ padding: 0.2em 0.5em;
+ border: 0.1em solid black;
+ border-radius: 5px;
+}
+
+pre.bz_comment_text {
+ width: unset;
+ padding: 0.2em 0.5em;
+}
+
div.bz_comment_hilite {
border: solid 3px;
}
@@ -43,6 +88,12 @@ div.bz_comment_hilite {
background-color: inherit;
}
+span.quote {
+ background-color: white;
+ margin: 0.5em;
+ padding: 0.5em;
+}
+
.change_removed {
color: darkred;
}
@@ -50,3 +101,22 @@ div.bz_comment_hilite {
.change_added {
color: darkgreen;
}
+
+table.bz_comment_table {
+ width: 100%;
+}
+
+table.bz_comment_table tr {
+ display: flex;
+ flex-direction: column;
+}
+
+table.bz_comment_table td:nth-child(2) {
+ order: -1;
+}
+
+ul.bz_collapse_expand_comments li {
+ display: inline;
+ float: right;
+ margin-left: 0.8em;
+}