diff options
author | Unknwon <u@gogs.io> | 2015-11-30 20:45:55 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-11-30 20:45:55 -0500 |
commit | 830d00066785d131413d1de11ce301bf1f0b818a (patch) | |
tree | dd22bc4ecc89692146776d335d08c04722650f3f /public | |
parent | 5d1f5f32d069ee58a9eb89072231d92dc9ec5f74 (diff) | |
download | gitea-830d00066785d131413d1de11ce301bf1f0b818a.tar.gz gitea-830d00066785d131413d1de11ce301bf1f0b818a.zip |
finish wiki
Diffstat (limited to 'public')
-rw-r--r-- | public/config.codekit | 14 | ||||
-rwxr-xr-x | public/css/gogs.css | 47 | ||||
-rw-r--r-- | public/less/_repository.less | 55 |
3 files changed, 66 insertions, 50 deletions
diff --git a/public/config.codekit b/public/config.codekit index b0e87905d3..aaf47017fb 100644 --- a/public/config.codekit +++ b/public/config.codekit @@ -1,6 +1,6 @@ { "CodeKitInfo": "This is a CodeKit 2.x project configuration file. It is designed to sync project settings across multiple machines. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. If you do so, you will likely cause CodeKit to crash. This file is not useful unless accompanied by the project that created it in CodeKit 2. This file is not backwards-compatible with CodeKit 1.x. For more information, see: http:\/\/incident57.com\/codekit", -"creatorBuild": "19076", +"creatorBuild": "19102", "files": { "\/css\/dropzone-4.2.0.css": { "fileType": 16, @@ -616,10 +616,18 @@ "active": 0, "flagValue": -1 }, + "no_nested_string_interpolation": { + "active": 1, + "flagValue": -1 + }, "no_plusplus": { "active": 0, "flagValue": -1 }, + "no_private_function_fat_arrows": { + "active": 1, + "flagValue": -1 + }, "no_stand_alone_at": { "active": 1, "flagValue": -1 @@ -628,6 +636,10 @@ "active": 1, "flagValue": -1 }, + "no_this": { + "active": 0, + "flagValue": -1 + }, "no_throwing_strings": { "active": 1, "flagValue": -1 diff --git a/public/css/gogs.css b/public/css/gogs.css index d34a62d1fe..d58c4e2540 100755 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1806,6 +1806,28 @@ footer .container .links > *:first-child { margin: 1px; padding-right: 0; } +.repository #clone-panel { + margin-top: -8px; + width: 100%; +} +.repository #clone-panel input { + border-radius: 0; + padding: 5px 10px; +} +.repository #clone-panel .clone.button { + font-size: 13px; + padding: 0 5px; +} +.repository #clone-panel .clone.button:first-child { + border-radius: .28571429rem 0 0 .28571429rem; +} +.repository #clone-panel .icon.button { + padding: 0 10px; +} +.repository #clone-panel .dropdown .menu { + right: 0!important; + left: auto!important; +} .repository.file.list #repo-desc { font-size: 1.2em; } @@ -1826,28 +1848,6 @@ footer .container .links > *:first-child { .repository.file.list .head.meta li .ui.breadcrumb a { font-size: 16px; } -.repository.file.list .clone.input { - margin-top: -8px; - width: 100%; -} -.repository.file.list .clone.input input { - border-radius: 0; - padding: 5px 10px; -} -.repository.file.list .clone.input .clone.button { - font-size: 13px; - padding: 0 5px; -} -.repository.file.list .clone.input .clone.button:first-child { - border-radius: .28571429rem 0 0 .28571429rem; -} -.repository.file.list .clone.input .icon.button { - padding: 0 10px; -} -.repository.file.list .clone.input .dropdown .menu { - right: 0!important; - left: auto!important; -} .repository.file.list #repo-files-table .table.list { width: 80% !important; } @@ -2531,6 +2531,9 @@ footer .container .links > *:first-child { .repository.wiki.new .editor-preview { background-color: white; } +.repository.wiki.view .choose.page { + margin-top: -5px; +} .repository.wiki.view .ui.sub.header { text-transform: none; } diff --git a/public/less/_repository.less b/public/less/_repository.less index 486e0b8267..928d5cf357 100644 --- a/public/less/_repository.less +++ b/public/less/_repository.less @@ -91,6 +91,31 @@ } } + #clone-panel { + margin-top: -8px; + width: 100%; + + input { + border-radius: 0; + padding: 5px 10px; + } + + .clone.button { + font-size: 13px; + padding: 0 5px; + &:first-child { + border-radius: .28571429rem 0 0 .28571429rem; + } + } + .icon.button { + padding: 0 10px; + } + .dropdown .menu { + right: 0!important; + left: auto!important; + } + } + &.file.list { #repo-desc { font-size: 1.2em; @@ -117,31 +142,6 @@ } } - .clone.input { - margin-top: -8px; - width: 100%; - - input { - border-radius: 0; - padding: 5px 10px; - } - - .clone.button { - font-size: 13px; - padding: 0 5px; - &:first-child { - border-radius: .28571429rem 0 0 .28571429rem; - } - } - .icon.button { - padding: 0 10px; - } - .dropdown .menu { - right: 0!important; - left: auto!important; - } - } - #repo-files-table { .table.list { width: 80% !important; @@ -972,9 +972,10 @@ } &.view { - .header:not(.sub) { - // padding-left: 30px; + .choose.page { + margin-top: -5px; } + .ui.sub.header { text-transform: none; } |