diff options
author | silverwind <me@silverwind.io> | 2022-10-12 18:26:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-12 12:26:27 -0400 |
commit | ac3a61ea176d4f0359ddb195bcc73eef3eec44fe (patch) | |
tree | b13d2dab63051a21bc9d745d447912fc5984aec2 /web_src/less/animations.less | |
parent | 42b803554cb9f96494893e27925bf5bba980b68f (diff) | |
download | gitea-ac3a61ea176d4f0359ddb195bcc73eef3eec44fe.tar.gz gitea-ac3a61ea176d4f0359ddb195bcc73eef3eec44fe.zip |
Consolidate more CSS colors into variables (#21402)
Move more colors into variables. The only real notable change is the dot
in the release timeline. Also, made the variable comments a bit more
clear.
<img width="279" alt="Screen Shot 2022-10-10 at 21 10 23"
src="https://user-images.githubusercontent.com/115237/194938496-e5a21056-67c4-4219-9c68-134b0edf0e61.png">
<img width="88" alt="Screen Shot 2022-10-10 at 21 31 53"
src="https://user-images.githubusercontent.com/115237/194939712-f666c43e-fb1a-4045-be52-1176391bd8ea.png">
<img width="90" alt="Screen Shot 2022-10-10 at 21 31 44"
src="https://user-images.githubusercontent.com/115237/194939710-2e620c06-75a9-41b7-a3e1-18eab7a57614.png">
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src/less/animations.less')
-rw-r--r-- | web_src/less/animations.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/less/animations.less b/web_src/less/animations.less index ea31d53bfe..6d32625704 100644 --- a/web_src/less/animations.less +++ b/web_src/less/animations.less @@ -24,7 +24,7 @@ animation: isloadingspin 500ms infinite linear; border-width: 4px; border-style: solid; - border-color: #ececec #ececec #666 #666; + border-color: var(--color-secondary) var(--color-secondary) var(--color-secondary-dark-8) var(--color-secondary-dark-8); border-radius: 100%; } |