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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuzanne Selhorn <sselhorn@gitlab.com>2023-04-26 11:34:02 +0300
committerDiana Logan <dlogan@gitlab.com>2023-04-26 11:34:02 +0300
commitd1cb3e8638c6e0acee0bb84f3bc194ba794557f1 (patch)
treed055147cd443337deda7adc09c85ddb9e93544cb
parentc3e835236b4bcc946cc3753f55e304642e049a17 (diff)
Editing table styles
-rw-r--r--content/assets/stylesheets/_tables.scss17
1 files changed, 5 insertions, 12 deletions
diff --git a/content/assets/stylesheets/_tables.scss b/content/assets/stylesheets/_tables.scss
index ecdb3552..1414859b 100644
--- a/content/assets/stylesheets/_tables.scss
+++ b/content/assets/stylesheets/_tables.scss
@@ -18,15 +18,10 @@ table {
overflow: auto;
tr {
- border-top: 1px solid $gray-100;
-
-
- &:nth-child(even) {
- background-color: $gray-10;
- }
+ border-top: 1px solid $gray-50;
&:last-child {
- border-bottom: 1px solid $gray-100;
+ border-bottom: 1px solid $gray-50;
}
}
@@ -42,17 +37,15 @@ table {
}
th {
- background-color: $gray-50;
- color: $gray-900;
+ background-color: $white;
+ color: $gray-950;
line-height: 1.25;
text-align: left;
position: sticky;
vertical-align: top;
z-index: 1;
top: $header-height;
- box-shadow: 0 3px 0 0 var(--color-auto-gray-4);
- padding: 12px 8px;
- border: 0;
+ padding: 14px;
}
td {