123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233 |
- /*!
- * Gogs - Go Git Service (http://gogits.org)
- * Copyright 2014 Gogs.
- * Licensed under MIT (https://github.com/gogits/gogs/blob/master/LICENSE)
- */
- body {
- background: #F6F6F6;
- }
- html, body {
- height: 100%;
- font-family: Helvetica, Arial, sans-serif;
- }
- /* override bs3 */
- .tooltip-inner {
- border-radius: 3px;
- background: #333;
- border: none;
- }
- .tooltip-arrow {
- border-bottom-color: #333 !important;
- }
- .tooltip-arrow:before {
- border-bottom-color: transparent !important;
- }
- .fa {
- margin: 0 .5em;
- }
- .fa-m {
- margin: 0;
- }
- .list-group .list-group-item {
- background-color: transparent;
- }
- .btn {
- cursor: pointer;
- }
- .panel-default .panel-heading {
- background-color: #FAFAFA;
- border-bottom: 1px solid #DDD;
- font-weight: bold;
- }
- /* gogits nav header */
- .masthead {
- background-color: #428bca;
- box-shadow: inset 0 -2px 5px rgba(0, 0, 0, .1);
- margin: 0;
- }
- /* gogits nav item link */
- .nav-item {
- position: relative;
- display: inline-block;
- padding: 10px;
- font-weight: bold;
- color: #EEE;
- font-size: 100%;
- height: 46px;
- }
- #nav-logo {
- padding-left: 0;
- padding-right: 0;
- margin-right: 10px;
- }
- .nav-item:hover,
- .nav-item:focus {
- color: #fff;
- text-decoration: none;
- }
- .nav-item.navbar-right {
- margin-top: 3px;
- }
- .nav-item.navbar-btn {
- cursor: pointer;
- margin-top: 8px;
- padding: 5px 15px;
- height: 30px;
- }
- .nav-item.navbar-right .fa {
- margin: 0;
- }
- /* gogits nav item active status */
- #masthead .nav .active {
- color: #fff;
- }
- #masthead .nav .active:after {
- position: absolute;
- bottom: -1px;
- left: 50%;
- width: 0;
- height: 0;
- margin-left: -5px;
- vertical-align: middle;
- content: " ";
- border-right: 5px solid transparent;
- border-bottom: 5px solid;
- border-left: 5px solid transparent;
- }
- #nav-logo:after {
- bottom: -4px !important;
- }
- #nav-avatar:after {
- bottom: -4px !important;
- }
- .nav .tooltip {
- border: none;
- }
- /* gogits logo */
- #nav-avatar {
- margin-top: 0;
- }
- #logo, #nav-avatar img {
- width: 28px;
- height: 28px;
- }
- #nav-out {
- margin-top: 10px;
- padding: 5px 0;
- margin-left: 10px;
- height: 28px;
- float: right;
- }
- #nav-signin, #nav-signup {
- float: right;
- margin-left: 1em;
- }
- #nav-out .fa {
- vertical-align: -10%;
- margin: 0 .5em;
- }
- /* gogits body */
- #body {
- padding-bottom: 60px;
- margin-top: 30px;
- }
- #body .btn-default {
- background-color: #FFF;
- background-image: linear-gradient(to bottom, #FFF 0, #FAFAFA 100%);
- }
- #body-nav {
- background-color: #FFF;
- border-bottom: 1px solid #DDD;
- height: 66px
- }
- #body-nav .nav {
- font-size: 14px;
- margin-top: 12px;
- }
- #body-nav .nav-pills li a {
- color: #444;
- }
- #body-nav .nav-pills li.active a {
- font-weight: bold;
- border-bottom: 2px solid #d26911;
- background-color: transparent;
- color: #444;
- }
- #body-nav .nav-pills li:hover a {
- background-color: transparent;
- text-decoration: underline;
- }
- /* gogits login card */
- .card {
- margin: auto;
- padding: 30px;
- background: #fff;
- border: 1px solid #ccc;
- border-radius: 5px;
- box-sizing: border-box;
- }
- .card h3 {
- margin-top: 0;
- margin-bottom: 30px;
- padding-bottom: 20px;
- border-bottom: 1px solid #ccc;
- }
- #login-card {
- width: 600px;
- }
- #login-card .form-control {
- padding: 6px 12px;
- box-sizing: content-box;
- }
- #login-card .control-label {
- height: 44px;
- line-height: 30px;
- }
- #install-card {
- width: 800px;
- }
- #install-card .form-group {
- margin-left: 0;
- margin-right: 0;
- }
- .card .btn {
- cursor: pointer;
- margin-right: 1.2em;
- }
- #social-login {
- margin-top: 30px;
- padding-top: 20px;
- border-top: 1px solid #ccc;
- }
- #social-login .btn {
- float: none;
- margin: auto;
- }
- /* gogs-user-profile */
- #user-avatar {
- width: 200px;
- height: 200px;
- border-radius: 6px;
- }
- #user-avatar-commit {
- width: 16px;
- height: 16px;
- border-radius: 2px;
- }
- #user-name {
- margin-top: 20px;
- font-size: 1.6em;
- font-weight: bold;
- margin-bottom: 20px;
- }
- #user-profile .profile-info .list-group-item {
- background-color: transparent;
- padding-top: 18px;
- color: #666;
- }
- #user-profile .profile-info .list-group-item a {
- margin: 0;
- padding: 0;
- display: inline;
- color: #0093c4;
- }
- #user-profile .profile-info .list-group {
- border-top: 1px solid #ccc;
- padding-bottom: 18px;
- border-bottom: 1px solid #ccc;
- padding-left: 18px;
- padding-right: 18px;
- }
- #user-activity .tab-pane {
- padding: 20px;
- }
- #user-act-tabs li.active a {
- border-bottom-color: #ddd;
- }
- /* gogits repo create */
- #repo-create {
- width: 800px;
- }
- #repo-create textarea[name=desc] {
- height: 8em;
- }
- /* gogits user setting */
- #user-setting-nav > h4, #user-setting-container > h4, #user-setting-container > div > h4,
- #ssh-keys > h4, #user-delete > h4, #repo-setting-container .tab-pane > h4 {
- padding-bottom: 18px;
- margin-bottom: 18px;
- border-bottom: 1px solid #CCC;
- }
- #user-setting-nav .list-group .list-group-item a {
- margin-left: 0;
- padding: .6em;
- font-size: 14px;
- color: #3B73AF;
- }
- #user-setting-nav .list-group .list-group-item {
- background-color: transparent;
- }
- #user-setting-nav .list-group .list-group-item-success a {
- font-weight: bold;
- color: #444;
- }
- .admin-nav {
- background-color: #FFF;
- padding-top: 10px;
- padding-left: 0;
- padding-right: 0;
- border: 1px solid #D8D8D8;
- }
- .admin-nav li {
- margin-bottom: 8px;
- border-left: 4px solid transparent;
- }
- .admin-nav li:hover {
- border-left-color: #EEE;
- }
- .admin-nav li.active:hover {
- border-left: 4px solid #DD4B39;
- }
- #repo-setting-container .form-horizontal label {
- line-height: 30px;
- }
- /* gogits user ssh keys */
- #ssh-keys .list-group-item {
- padding: 15px 0;
- border-bottom: 1px solid #DDD;
- }
- #ssh-keys .list-group-item .delete {
- margin: -5px 50px 0;
- }
- #ssh-keys .list-group-item:after {
- clear: both;
- }
- #ssh-keys .name {
- font-size: 14px;
- font-weight: bold;
- }
- #ssh-keys .print {
- padding-left: 1em;
- color: #888;
- }
- #ssh-add {
- display: inline-block;
- color: white;
- cursor: pointer;
- margin-left: 0;
- border-radius: 3px;
- }
- #ssh-form textarea {
- height: 16em;
- }
- /* #feed */
- #feed-right .repo-panel .panel-heading .btn {
- margin-top: -4px;
- }
- #feed-right .repo-panel .panel-body {
- padding: 0;
- }
- #feed-right .repo-panel .list-group {
- margin-bottom: 0;
- }
- #feed-right .repo-panel .list-group-item a {
- display: block;
- margin-left: 0;
- background-color: transparent;
- padding-left: 0;
- font-weight: bold;
- }
- #feed-right .repo-panel .list-group-item .fa {
- color: #666;
- }
- #feed-right .repo-panel .list-group-item {
- font-size: 14px;
- line-height: 32px;
- border-bottom: 1px solid #DDD;
- padding-left: 15px;
- clear: both;
- }
- #feed-right .repo-panel .list-group-item:last-child {
- border-bottom: none;
- }
- #feed-right .repo-panel .list-group-item:hover {
- background-color: #eafffd;
- background-color: rgba(65, 131, 196, 0.1);
- }
- #feed-right .repo-panel span.stars {
- color: #666;
- margin-right: 1em;
- }
- /* gogits repo single page */
- #body-nav.repo-nav {
- padding-top: 16px;
- padding-bottom: 30px;
- height: auto;
- }
- .repo-nav .name {
- margin-top: 15px;
- }
- .repo-nav .desc {
- color: #888;
- margin-bottom: 0;
- }
- .repo-nav h3 .fa {
- color: #BBB;
- margin-left: 0;
- }
- .repo-nav .actions {
- padding-top: 20px;
- }
- .repo-nav .btn-default {
- font-family: Tahoma, Arial, sans-serif;
- }
- #repo-watching .dropdown-menu {
- width: 280px;
- padding: 0;
- }
- #repo-watching .dropdown-menu .dropdown-item:hover .dropdown-header, #repo-watching .dropdown-item .dropdown-header.text-primary {
- color: rgb(65, 131, 196);
- cursor: pointer;
- }
- #repo-watching .dropdown-menu .description {
- padding: 0 20px;
- color: #888;
- }
- #repo-watching .dropdown-menu .dropdown-header {
- color: #444;
- font-weight: bold;
- font-size: 14px;
- margin-bottom: 4px;
- }
- #repo-toolbar {
- border-bottom: 1px solid #DDD;
- background-color: #FFF;
- height: 40px;
- font-size: 14px;
- }
- #repo-toolbar .navbar-default {
- border: none;
- height: 39px;
- }
- #repo-toolbar .nav > li > a {
- height: 39px;
- }
- #repo-toolbar .nav .tmp a:hover {
- text-decoration: none;
- }
- #repo-toolbar .nav .tmp .btn {
- margin-top: -2px;
- }
- #repo-toolbar .nav .active {
- color: #F6F6F6;
- }
- #repo-toolbar .nav > .active > a:after {
- border-bottom-color: #999;
- }
- #repo-toolbar .navbar.nav-toolbar {
- margin-bottom: 0;
- }
- #repo-toolbar .navbar-collapse {
- padding: 0;
- }
- .activity-list {
- font-size: 14px;
- }
- .activity-list .icon {
- font-size: 20px;
- color: #aaa;
- float: left;
- }
- .activity-list .info {
- margin: 0 0 0 40px;
- line-height: 1.7em;
- }
- .activity-list .meta {
- color: #aaa;
- }
- .activity-list li {
- padding: 15px 0;
- border-top: 1px solid #ddd;
- }
- .activity-list li:first-child {
- border-top: none;
- }
- .repo-list li {
- padding: 15px 0;
- border-top: 1px solid #ddd;
- }
- .repo-list li:first-child {
- border-top: none;
- }
- .repo-list h4 {
- font-weight: bold;
- font-size: 24px;
- }
- .repo-list .meta {
- margin: 15px 0 0;
- font-size: 14px;
- }
- .repo-list .desc {
- font-size: 15px;
- }
- .repo-list .meta .fa {
- margin: 0 0 0 20px;
- }
- .repo-list .meta,
- .repo-list .info {
- color: #999;
- }
- .popover .repo-clone-div {
- min-width: 200px;
- }
- #repo-clone .dropdown-menu {
- width: 400px;
- padding: 20px;
- }
- #repo-clone .input-group {
- margin-bottom: 15px;
- }
- /* #source */
- #source, #commits {
- margin-top: -20px;
- }
- #source .source-toolbar:after {
- clear: both;
- }
- #source .source-toolbar .branch-switch {
- display: inline-block;
- }
- #source .source-toolbar .breadcrumb {
- margin: 0 .5em;
- padding: 6px 15px;
- font-size: 16px;
- vertical-align: middle;
- display: inline-block;
- background-color: transparent;
- }
- #source .source-toolbar,
- #source .info-box,
- #source .file-content {
- margin: 0 0 10px;
- }
- .info-box .info-head,
- .info-box .info-content {
- padding: 9px 20px;
- }
- .info-box .info-head {
- font-weight: normal;
- }
- .info-box .info-content a,
- .info-box .info-head a {
- color: #666;
- }
- .file-list {
- background-color: #fafafa;
- }
- .file-list .icon {
- font-size: 17px;
- padding: 5px 0 4px 10px;
- width: 50px;
- color: #999;
- text-align: right;
- }
- .file-list .wrap {
- display: inline-block;
- overflow: hidden;
- text-overflow: ellipsis;
- vertical-align: top;
- white-space: nowrap;
- }
- .file-list .name .wrap {
- max-width: 180px;
- }
- .file-list .text .wrap {
- max-width: 450px;
- }
- .file-list .date .wrap {
- max-width: 120px;
- padding: 0 20px 0 0;
- }
- .file-list .date {
- text-align: right;
- }
- .file-content .file-head {
- font-size: 18px;
- }
- .file-content .file-head .icon {
- color: #666;
- margin: 0 .5em 0 0;
- }
- .file-content .file-head .file-size {
- font-size: 13px;
- color: #888;
- margin-left: 1em;
- }
- .file-content .file-body {
- padding: 30px 30px 50px;
- border: none;
- background-color: #FFF;
- overflow: auto;
- overflow-x: auto;
- overflow-y: hidden;
- }
- .file-content .file-body.file-code pre {
- background-color: #FFF;
- border: none;
- }
- .file-content .file-body.file-code {
- padding: 0;
- }
- .file-content .file-body.file-code .lines-code > pre {
- border: none;
- background: none;
- border-left: 1px solid #ddd;
- }
- .file-content .file-body.file-code .lines-code ol.linenums > .active {
- background: #ffffdd;
- }
- .file-content .file-body.file-code .lines-num {
- text-align: right;
- color: #999;
- background: #fafafa;
- width: 1%;
- }
- .file-content .file-body.file-code .lines-ellipsis {
- background-color: #FAFAFA;
- color: #999;
- width: 1%;
- }
- .file-content .file-body.file-code .lines-num span {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- line-height: 1.6;
- padding: 0 8px 0 10px;
- cursor: pointer;
- display: block;
- margin-top: 2px;
- font-size: 90%;
- }
- .file-content .file-body.file-code .lines-num span:first-child {
- margin-top: 0;
- }
- .file-content .file-body.file-code > table {
- width: 100%;
- }
- .file-content .file-body.file-code > table > tbody > tr,
- .file-content .file-body.file-code > table > tbody > tr > td,
- .file-content .file-body.file-code > table {
- border: none;
- background: none;
- }
- .branch-list th, .commit-list th {
- background-color: #FFF;
- line-height: 28px !important;
- }
- .branch-list td {
- line-height: 36px !important;
- }
- .branch-box tr:hover td, .commit-box tr:hover td {
- background-color: rgba(19, 95, 215, 0.06) !important;
- }
- .branch-box .name, .commit-box .author {
- padding-left: 20px;
- }
- .branch-box .name {
- font-size: 15px;
- }
- .branch-box .action {
- width: 150px;
- }
- .branch-box td.date, .branch-box td.behind, .branch-box td.ahead {
- width: 120px;
- font-family: Verdana, Arial, sans-serif;
- }
- .branch-box .graph {
- display: block;
- height: 3px;
- }
- .branch-box .behind {
- text-align: right;
- direction: rtl;
- }
- .branch-box .behind .graph {
- background-color: #888;
- }
- .branch-box .ahead .graph {
- background-color: #0093c4;
- }
- .branch-box .branch-main {
- background-color: #444;
- color: #FFF;
- border-color: #444;
- }
- .branch-box .branch-main a {
- color: #FFF;
- }
- .branch-box .branch-main .name .btn {
- margin-left: .5em;
- }
- .commit-box .avatar, .diff-head-box .avatar {
- width: 20px;
- height: 20px;
- margin-right: 8px;
- vertical-align: top;
- }
- .commit-box .search {
- margin-top: 3px;
- }
- .commit-box td {
- background-color: #FFF;
- }
- .commit-list .date {
- width: 120px;
- }
- .commit-list .author {
- min-width: 180px;
- }
- .commit-list .sha a {
- font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
- font-size: 14px;
- }
- .guide-box pre, .guide-box .input-group {
- margin-top: 20px;
- margin-bottom: 30px;
- line-height: 24px;
- }
- .guide-box input[readonly] {
- background-color: #FFF;
- }
- .guide-box, .diff-head-box {
- margin-top: 4px;
- }
- .diff-head-box h4 {
- margin-top: 0;
- margin-bottom: 0;
- line-height: 26px;
- }
- .diff-head-box p {
- margin-bottom: 0;
- }
- .diff-head-box .sha {
- margin-left: 8px;
- }
- .diff-head-box a.name {
- color: #444;
- margin-right: 8px;
- }
- .diff-head-box span.time {
- color: #888;
- }
- .diff-detail-box {
- margin-bottom: 16px;
- line-height: 30px;
- }
- .diff-detail-box span.status {
- display: inline-block;
- width: 12px;
- height: 12px;
- margin-right: 8px;
- vertical-align: middle;
- }
- .diff-detail-box ol {
- padding-left: 0;
- margin-bottom: 28px;
- }
- .diff-detail-box li {
- list-style: none;
- padding-bottom: 4px;
- margin-bottom: 4px;
- border-bottom: 1px dashed #DDD;
- padding-left: 6px;
- }
- .diff-detail-box span.status.modify {
- background-color: #f0db88;
- }
- .diff-detail-box span.status.add {
- background-color: #b4e2b4;
- }
- .diff-detail-box span.status.del {
- background-color: #e9aeae;
- }
- .diff-detail-box span.status.rename {
- background-color: #dad8ff;
- }
- .diff-file-box .panel-heading {
- padding: 10px 20px;
- line-height: 26px;
- }
- .diff-box .count {
- margin-right: 12px;
- }
- .diff-box .count .bar {
- width: 40px;
- display: inline-block;
- margin: 2px 4px 0 4px;
- vertical-align: text-top;
- }
- .diff-box .file {
- color: #888;
- }
- #source .file-content.diff-file-box {
- margin-bottom: 20px;
- }
- .diff-box .count .bar .add {
- background-color: #77c64a;
- height: 12px;
- }
- .diff-box .count .bar .del, .diff-box .count .bar {
- background-color: #e75316;
- height: 12px;
- }
- .diff-file-box .file-body.file-code .lines-code > pre {
- margin: 0;
- padding: 3px;
- }
- .diff-file-box .file-body.file-code .lines-num-old {
- border-right: 1px solid #DDD;
- }
- .diff-file-box .code-bin td {
- padding: 20px;
- }
- .diff-file-box .code-diff tbody tr.tag-code td, .diff-file-box .code-diff tbody tr.tag-code pre {
- background-color: #E0E0E0 !important;
- border-color: #ADADAD !important;
- }
- .diff-file-box .code-diff tbody tr.add-code td, .diff-file-box .code-diff tbody tr.add-code pre {
- background-color: #d1ffd6 !important;
- border-color: #b4e2b4 !important;
- }
- .diff-file-box .code-diff tbody tr.del-code td, .diff-file-box .code-diff tbody tr.del-code pre {
- background-color: #ffe2dd !important;
- border-color: #e9aeae !important;
- }
- .diff-file-box .code-diff tbody tr:hover td, .diff-file-box .code-diff tbody tr:hover pre {
- background-color: #fff8d2 !important;
- border-color: #f0db88 !important;
- }
- .diff-file-box .ellipsis-code pre {
- color: #AAA;
- }
- /* issue */
- #issue-create-form .avatar {
- width: 50px;
- height: 50px;
- }
- #issue-create-form .panel-body {
- padding: 15px 0 0 0;
- }
- #issue-create-form .panel-body.form-group, #issue-create-form .tab-pane .form-group {
- margin-bottom: 0;
- }
- #issue-create-form .nav-tabs, #issue .issue-reply .nav-tabs {
- margin-bottom: 10px;
- }
- #issue .md-help {
- margin-top: 6px;
- }
- #issue .filter-list a {
- padding: 6px 10px;
- font-size: 14px;
- display: block;
- margin-bottom: 6px;
- border-radius: 3px;
- color: #444;
- }
- #issue .filter-list a.sm {
- font-size: 13px;
- }
- #issue .filter-list hr {
- border-color: #CCC;
- }
- #issue .filter-list a:hover {
- background-color: #DDD;
- text-decoration: none;
- }
- #issue .filter-list a.active {
- background-color: #4183c4;
- color: #FFF;
- }
- #issue .filter-option {
- margin-bottom: 12px;
- }
- #issue .list-group .list-group-item {
- background-color: #FFF;
- }
- #issue .issue-item:hover {
- background-color: rgba(19, 95, 215, 0.03);
- }
- #issue .list-group .list-group-item.unread {
- border-left: 2px solid #DD4B39;
- }
- #issue .issue-item .title {
- margin-bottom: 16px;
- font-weight: bold;
- }
- #issue .issue-item h5.title a {
- color: #444;
- }
- #issue .issue-item .info span {
- margin-right: 12px;
- color: #888;
- line-height: 20px;
- }
- #issue .issue-item .info a, #issue .issue-item .number {
- color: #888;
- }
- #issue .issue-item .number {
- margin-top: 8px;
- }
- #issue .issue-item .avatar {
- margin-right: 8px;
- width: 20px;
- height: 20px;
- vertical-align: top;
- }
- #issue .issue-whole .title {
- margin-top: 0;
- font-size: 28px;
- }
- #issue .issue-whole .number {
- font-size: 26px;
- color: #AAA;
- }
- #issue .issue-head .author .avatar {
- width: 48px;
- height: 48px;
- margin-right: 16px;
- }
- #issue .issue-head .info {
- width: 99%;
- margin-top: 10px;
- padding-left: 74px;
- margin-bottom: 16px;
- padding-bottom: 20px;
- border-bottom: 1px solid #CCC;
- }
- #issue .issue-head .status {
- font-size: 16px;
- font-weight: bold;
- padding: 6px 18px;
- border-radius: 3px;
- }
- #issue .issue-head a.author {
- margin-left: .6em;
- color: #444;
- }
- #issue .issue-main {
- padding-left: 0;
- }
- #issue .issue-content {
- border-bottom-width: 1px;
- }
- #issue .issue-child .user .avatar {
- width: 42px;
- height: 42px;
- margin-right: 12px;
- }
- #issue .issue-child .issue-content {
- margin-left: 56px;
- }
- #issue .issue-child .panel-heading {
- padding-top: 10px;
- padding-bottom: 10px;
- font-weight: normal;
- }
- #issue .issue-child .panel-heading .user,#issue .issue-closed a.user,#issue .issue-opened a.user {
- font-weight: bold;
- }
- #issue .issue-line {
- border-color: #CCC;
- }
- #issue .issue-is-closed .issue-line{
- display: none;
- }
- #issue .issue-head .info .btn {
- margin-top: -8px;
- margin-left: 8px;
- }
- #issue .issue-action {
- padding-left: 8px;
- color: #888;
- width: 24px;
- }
- #issue-edit-title {
- width: 60%;
- }
- #issue .issue-closed .issue-content,#issue .issue-opened .issue-content{
- line-height: 42px;
- }
- #issue .issue-closed, #issue .issue-opened {
- border-bottom: 2px solid #CCC;
- margin-bottom: 24px;
- padding-bottom: 24px;
- }
- #issue .issue-closed .label-danger,#issue .issue-opened .label-success{
- margin: 0 .8em;
- }
- /* wrapper and footer */
- #wrapper {
- min-height: 100%;
- height: auto !important;
- height: 100%;
- margin: 0 auto -100px;
- padding: 0 0 100px;
- }
- #footer {
- background: #fff;
- -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);
- box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.05);;
- height: 100px;
- }
- #footer .footer-wrap {
- padding: 20px 15px;
- }
- #footer a {
- color: #000;
- }
|