diff options
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_base.less | 16 | ||||
-rw-r--r-- | public/less/_form.less | 4 | ||||
-rw-r--r-- | public/less/_organization.less | 17 | ||||
-rw-r--r-- | public/less/_repository.less | 5 | ||||
-rw-r--r-- | public/less/gogs.less | 1 |
5 files changed, 39 insertions, 4 deletions
diff --git a/public/less/_base.less b/public/less/_base.less index fa307c2a87..7a15e99796 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -73,9 +73,21 @@ img { .text { &.red { color: #d95c5c!important; + a { + color: #d95c5c!important; + &:hover { + color: #E67777!important; + } + } } &.blue { color: #428bca!important; + a { + color: #15c!important; + &:hover { + color: #428bca!important; + } + } } &.grey { color: #767676!important; @@ -105,6 +117,10 @@ img { white-space: nowrap; display: inline-block; } + + &.thin { + font-weight: normal; + } } .message { diff --git a/public/less/_form.less b/public/less/_form.less index 7297dd4086..65d973afed 100644 --- a/public/less/_form.less +++ b/public/less/_form.less @@ -59,7 +59,7 @@ } } } -.repository.edit.hook { +.repository.edit.githook { form { @input-padding: 25%!important; .inline.field > label { @@ -73,7 +73,7 @@ } } } -.repository.edit.hook { +.repository.edit.githook { form { textarea { width: 70%!important; diff --git a/public/less/_organization.less b/public/less/_organization.less new file mode 100644 index 0000000000..389a4648bb --- /dev/null +++ b/public/less/_organization.less @@ -0,0 +1,17 @@ +.organization { + padding-top: 15px; + padding-bottom: @footer-margin * 2; + + .head { + .ui.header { + .text { + vertical-align: middle; + font-size: 1.6rem; + margin-left: 15px; + } + .ui.right { + margin-top: 5px; + } + } + } +}
\ No newline at end of file diff --git a/public/less/_repository.less b/public/less/_repository.less index e989125fac..dd12dda055 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -629,8 +629,9 @@ } .item { padding: 10px 20px; - i { - margin-right: 5px; + .octicon, + .fa { + width: 20px; } } } diff --git a/public/less/gogs.less b/public/less/gogs.less index be1fc0f5be..9c277d3880 100644 --- a/public/less/gogs.less +++ b/public/less/gogs.less @@ -5,6 +5,7 @@ @import "_install"; @import "_form"; @import "_repository"; +@import "_organization"; @import "_user"; @import "_dashboard"; @import "_admin";
\ No newline at end of file |