diff options
author | Unknwon <u@gogs.io> | 2015-08-19 02:49:44 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-19 02:49:44 +0800 |
commit | 249345458737e4db5a06250593787b483726dff0 (patch) | |
tree | cf0c0b2a26341cbddfce59219d3cf447622563e3 /public/less | |
parent | 81b8427438d4d37d38a46d0fec4c22aee60f91fa (diff) |
new delete account UI and password confirmation
Diffstat (limited to 'public/less')
-rw-r--r-- | public/less/_base.less | 9 | ||||
-rw-r--r-- | public/less/_user.less | 4 | ||||
-rw-r--r-- | public/less/gogs.less | 1 |
3 files changed, 14 insertions, 0 deletions
diff --git a/public/less/_base.less b/public/less/_base.less index b834de8f..4bbb098e 100644 --- a/public/less/_base.less +++ b/public/less/_base.less @@ -102,6 +102,15 @@ img { padding-left: 0.75rem; vertical-align: middle; } + .warning { + &.header { + background-color: #F9EDBE!important; + border-color: #F0C36D; + } + &.segment { + border-color: #F0C36D; + } + } .avatar.image { border-radius: 3px; diff --git a/public/less/_user.less b/public/less/_user.less new file mode 100644 index 00000000..ba4948ba --- /dev/null +++ b/public/less/_user.less @@ -0,0 +1,4 @@ +.user { + padding-top: 15px; + padding-bottom: @footer-margin * 3; +}
\ No newline at end of file diff --git a/public/less/gogs.less b/public/less/gogs.less index b16beec1..3fe7705d 100644 --- a/public/less/gogs.less +++ b/public/less/gogs.less @@ -5,4 +5,5 @@ @import "_install"; @import "_form"; @import "_repository"; +@import "_user"; @import "_admin";
\ No newline at end of file |