diff options
author | Unknwon <u@gogs.io> | 2015-08-10 00:23:20 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-10 00:23:20 +0800 |
commit | 8a3ee795d2d069bbb57b3d134367078c8e8391d5 (patch) | |
tree | 43bb3c099e654a21ef83936cbbe80e7c919bcdae /public/less | |
parent | 7372042441804370ddcdf00c5ea29acedef99e1d (diff) | |
download | gitea-8a3ee795d2d069bbb57b3d134367078c8e8391d5.tar.gz gitea-8a3ee795d2d069bbb57b3d134367078c8e8391d5.zip |
finish transforming to v2
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_base.less | 4 | ||||
-rw-r--r-- | public/less/_repository.less | 70 |
2 files changed, 37 insertions, 37 deletions
diff --git a/public/less/_base.less b/public/less/_base.less index e7bb439d2e..0da54d9701 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -105,10 +105,6 @@ footer { text-align: center; } -.text-error { - color: #d95c5c !important; -} - .generate-img(16); .generate-img(@n, @i: 1) when (@i =< @n) { .img-@{i} { diff --git a/public/less/_repository.less b/public/less/_repository.less index 176c9e9df8..003192f8a2 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -160,42 +160,46 @@ } } } - // &.new.milestone { - // textarea { - // height: 200px; - // } - // } + &.new.milestone { + textarea { + height: 200px; + } + #deadline { + width: 150px; + } + } +} - // &.settings { - // .content { - // padding-left: 20px!important; - // } - // } +.settings .key.list { + .item:not(:first-child) { + border-top: 1px solid #eaeaea; + } + .ssh-key-state-indicator { + float: left; + color: gray; + padding-left: 10px; + padding-top: 10px; + &.active { + color: #6cc644; + } + } + .meta { + padding-top: 5px; + } + .print { + color: #767676; + } + .activity { + color: #666; + } } -// .settings .key.list { -// .item:not(:first-child) { -// border-top: 1px solid #eaeaea; -// } -// .ssh-key-state-indicator { -// float: left; -// color: gray; -// padding-left: 10px; -// padding-top: 10px; -// &.active { -// color: #6cc644; -// } -// } -// .meta { -// padding-top: 5px; -// } -// .print { -// color: #767676; -// } -// .activity { -// color: #666; -// } -// } +.ui.vertical.menu { + .header.item { + font-size: 1.1em; + background: #f0f0f0; + } +} .edit-label.modal, .new-label.segment { |