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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/pages/xlsx.scss')
-rw-r--r--app/assets/stylesheets/pages/xlsx.scss27
1 files changed, 26 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/xlsx.scss b/app/assets/stylesheets/pages/xlsx.scss
index 83b3759825e..d34a001e3f0 100644
--- a/app/assets/stylesheets/pages/xlsx.scss
+++ b/app/assets/stylesheets/pages/xlsx.scss
@@ -1,5 +1,30 @@
+$hll-bg: #f8eec7;
+
.hll {
> td {
- background-color: #f8eec7;
+ background-color: $hll-bg;
+ }
+}
+
+.xlsx-table {
+ border: 0;
+
+ > thead > tr > th {
+ &:first-of-type {
+ border-left: 0;
+ }
+
+ &:last-of-type {
+ border-right: 0;
+ }
+ }
+
+ > tbody > tr > td {
+ &:first-of-type {
+ background-color: $gray-light;
+ border-top: 0;
+ border-bottom: 0;
+ vertical-align: middle;
+ }
}
}