diff options
Diffstat (limited to 'web_src/css')
-rw-r--r-- | web_src/css/base.css | 4 | ||||
-rw-r--r-- | web_src/css/modules/animations.css | 2 | ||||
-rw-r--r-- | web_src/css/repo.css | 8 |
3 files changed, 5 insertions, 9 deletions
diff --git a/web_src/css/base.css b/web_src/css/base.css index 204b6a1560..dc79f2f322 100644 --- a/web_src/css/base.css +++ b/web_src/css/base.css @@ -29,6 +29,7 @@ --checkbox-size: 15px; /* height and width of checkbox and radio inputs */ --page-spacing: 16px; /* space between page elements */ --page-margin-x: 32px; /* minimum space on left and right side of page */ + --page-space-bottom: 64px; /* space between last page element and footer */ } @media (min-width: 768px) and (max-width: 1200px) { @@ -479,7 +480,7 @@ img.ui.avatar, .full.height { flex-grow: 1; - padding-bottom: 80px; + padding-bottom: var(--page-space-bottom); } .status-page-error { @@ -1149,6 +1150,7 @@ table th[data-sortt-desc] .svg { min-width: 0; } +.ui.dropdown > .ui.button, .flex-text-block > .ui.button, .flex-text-inline > .ui.button { margin: 0; /* fomantic buttons have default margin, when we use them in a flex container with gap, we do not need these margins */ diff --git a/web_src/css/modules/animations.css b/web_src/css/modules/animations.css index 173ca73314..8edf31ddbd 100644 --- a/web_src/css/modules/animations.css +++ b/web_src/css/modules/animations.css @@ -117,6 +117,8 @@ code.language-math.is-loading::after { animation-timing-function: ease-in-out; } +/* FIXME: `octicon-sync` is counterclockwise, so this animation is also counterclockwise, it looks somewhat strange. +Ideally in the future we should use a better image for clockwise animation. */ .circular-spin { animation: circular-spin-keyframes 1s linear infinite; } diff --git a/web_src/css/repo.css b/web_src/css/repo.css index b9a63a060d..0044b6b04d 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -476,14 +476,6 @@ td .commit-summary { margin-right: 5px; } -.repository.view.issue .merge.box .branch-update.grid .row { - padding-bottom: 1rem; -} - -.repository.view.issue .merge.box .branch-update.grid .row .icon { - margin-top: 1.1rem; -} - .repository.view.issue .comment-list:not(.prevent-before-timeline)::before { display: block; content: ""; |