mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix missing styling for dropdown icon on review button (#11998)
* Fix missing styling for dropdown icon on review button * Remove unnecessary span element Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
parent
c1a2887c02
commit
180286da0c
2 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
<div class="ui top right pointing dropdown custom" id="review-box">
|
<div class="ui top right pointing dropdown custom" id="review-box">
|
||||||
<div class="ui tiny green button btn-review">
|
<div class="ui tiny green button btn-review">
|
||||||
<span class="text">{{.i18n.Tr "repo.diff.review"}}</span>
|
{{.i18n.Tr "repo.diff.review"}}
|
||||||
<i class="dropdown icon"></i>
|
<i class="dropdown icon"></i>
|
||||||
</div>
|
</div>
|
||||||
<div class="menu review-box">
|
<div class="menu review-box">
|
||||||
|
|
|
@ -156,6 +156,12 @@
|
||||||
color: #428bca;
|
color: #428bca;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn-review > .dropdown.icon {
|
||||||
|
width: auto;
|
||||||
|
font-size: .85714286em;
|
||||||
|
margin: 0 0 0 1em;
|
||||||
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 768px) {
|
@media only screen and (max-width: 768px) {
|
||||||
#review-box > .menu {
|
#review-box > .menu {
|
||||||
> .ui.segment {
|
> .ui.segment {
|
||||||
|
|
Loading…
Reference in a new issue