From d7ffdb09972819482f7749b44037b946d4bc0e6e Mon Sep 17 00:00:00 2001 From: Eva Date: Thu, 3 Apr 2025 02:48:46 +0200 Subject: [PATCH] client/css: remove semicolons --- client/css/pool-list-view.styl | 12 ++++++------ client/css/pool-navigator-control.styl | 22 +++++++++++----------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/client/css/pool-list-view.styl b/client/css/pool-list-view.styl index af85dff0..bda6c8d9 100644 --- a/client/css/pool-list-view.styl +++ b/client/css/pool-list-view.styl @@ -31,12 +31,12 @@ outline: none border-right: 20px solid transparent &:before - content: ' '; - display: block; - position: relative; - width: 100%; - height: 20px; - bottom: 20px; + content: ' ' + display: block + position: relative + width: 100% + height: 20px + bottom: 20px .thumbnail width: 100% diff --git a/client/css/pool-navigator-control.styl b/client/css/pool-navigator-control.styl index f1ee14f8..1c4d636d 100644 --- a/client/css/pool-navigator-control.styl +++ b/client/css/pool-navigator-control.styl @@ -14,26 +14,26 @@ background: $top-navigation-color .pool-name - flex: 1 1; - text-align: center; - overflow: hidden; - white-space: nowrap; - -o-text-overflow: ellipsis; - text-overflow: ellipsis; + flex: 1 1 + text-align: center + overflow: hidden + white-space: nowrap + -o-text-overflow: ellipsis + text-overflow: ellipsis .first, .last - flex-basis: 1em; + flex-basis: 1em .first, .prev, .next, .last - flex: 0 1; - white-space: nowrap; + flex: 0 1 + white-space: nowrap >span padding-top: 2px padding-bottom: 2px - margin: 0 .25em; + margin: 0 .25em .darktheme .pool-navigator-container .pool-info-wrapper border: 1px solid $top-navigation-color-darktheme - background: $window-color-darktheme \ No newline at end of file + background: $window-color-darktheme