diff options
author | Scott Hampton <shampton@Scotts-MacBook-Pro.local> | 2018-11-01 13:55:00 -0700 |
---|---|---|
committer | Scott Hampton <shampton@Scotts-MacBook-Pro.local> | 2018-11-01 13:55:00 -0700 |
commit | 5a123ab928292b916bad3f9a75717d50b49e2d02 (patch) | |
tree | b2130f6ceea0b38f6c665a4eb57472e77f278bda | |
parent | 4472f31c33227f34150226b04f4c597797bb1825 (diff) | |
download | gitlab-ce-5a123ab928292b916bad3f9a75717d50b49e2d02.tar.gz |
Fix pipeline schedule style issues
- Don't show top border on table if after top area
- Vertically align all svgs in pipeline schedule table
-rw-r--r-- | app/assets/stylesheets/framework/tables.scss | 6 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/pipeline_schedules.scss | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/app/assets/stylesheets/framework/tables.scss b/app/assets/stylesheets/framework/tables.scss index 339388392df..6954e6599b1 100644 --- a/app/assets/stylesheets/framework/tables.scss +++ b/app/assets/stylesheets/framework/tables.scss @@ -147,3 +147,9 @@ table { } } } + +.top-area + .content-list { + th { + border-top: 0; + } +} diff --git a/app/assets/stylesheets/pages/pipeline_schedules.scss b/app/assets/stylesheets/pages/pipeline_schedules.scss index 86e70955389..617b3db2fae 100644 --- a/app/assets/stylesheets/pages/pipeline_schedules.scss +++ b/app/assets/stylesheets/pages/pipeline_schedules.scss @@ -39,10 +39,6 @@ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; - - svg { - vertical-align: middle; - } } .next-run-cell { @@ -52,6 +48,10 @@ a { color: $text-color; } + + svg { + vertical-align: middle; + } } .pipeline-schedules-user-callout { |