diff options
author | silverwind <me@silverwind.io> | 2020-11-09 19:21:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 18:21:47 +0000 |
commit | 8bae34c4b24b6af4ce9144028298884710ebf7a5 (patch) | |
tree | 879e32216b04f2e2dab0bc959ada756582144603 /web_src/less/helpers.less | |
parent | ef2ffc6aeddb872e438627b9fcb67bdd889fc726 (diff) | |
download | gitea-8bae34c4b24b6af4ce9144028298884710ebf7a5.tar.gz gitea-8bae34c4b24b6af4ce9144028298884710ebf7a5.zip |
Change search and filter icons to SVG (#13473)
Unfortunately, the Fomantic CSS relies on i.icon instead of .icon so a
wrapper is necessary for these with an accompanying class to center the
icon.
Diffstat (limited to 'web_src/less/helpers.less')
-rw-r--r-- | web_src/less/helpers.less | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less index 0fc5d573fb..be9adfa7a4 100644 --- a/web_src/less/helpers.less +++ b/web_src/less/helpers.less @@ -1,9 +1,9 @@ -.df { display: flex; } -.ac { align-items: center; } -.jc { justify-content: center; } -.js { justify-content: flex-start; } -.je { justify-content: flex-end; } -.sb { justify-content: space-between; } +.df { display: flex !important; } +.ac { align-items: center !important; } +.jc { justify-content: center !important; } +.js { justify-content: flex-start !important; } +.je { justify-content: flex-end !important; } +.sb { justify-content: space-between !important; } .mono { font-family: var(--fonts-monospace); font-size: .9em; /* compensate for monospace fonts being usually slighty larger */ } .rounded { border-radius: var(--border-radius) !important; } .word-break { word-wrap: break-word; word-break: break-all; } |