| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839 | 
							- /*!
 
-  * Gogs - Go Git Service (http://gogs.io)
 
-  * Copyright 2014 Gogs.
 
-  * Licensed under MIT (https://github.com/gogits/gogs/blob/master/LICENSE)
 
-  */
 
- body {
 
-     background: #F6F6F6;
 
- }
 
- html,
 
- body {
 
-     height: 100%;
 
-     font-family: Arial, Helvetica, 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;
 
-     margin-top: 3px;
 
- }
 
- #nav-logo {
 
-     padding-left: 0;
 
-     padding-right: 0;
 
-     margin-right: 10px;
 
-     margin-top: 0;
 
- }
 
- .nav-item:hover,
 
- .nav-item:focus {
 
-     color: #fff;
 
-     text-decoration: none;
 
- }
 
- .nav-item.navbar-btn {
 
-     cursor: pointer;
 
-     margin-top: 8px;
 
-     padding: 5px 15px;
 
-     height: 30px;
 
- }
 
- .nav-item.navbar-right .fa {
 
-     margin: 0;
 
- }
 
- #nav-search-form {
 
-     width: 300px;
 
-     margin-top: 0;
 
- }
 
- #nav-search-form button {
 
-     margin-top: 0;
 
-     background-image: none;
 
-     background-color: #F6F6F6;
 
- }
 
- #nav-search-form input[type=search] {
 
-     background-color: #F6F6F6;
 
-     border-bottom-right-radius: 3px;
 
-     border-top-right-radius: 3px;
 
-     -webkit-transition: width linear .25s;
 
- }
 
- #nav-search-form input[type=search]:focus {
 
-     background-color: #FFF;
 
-     border-color: #D9D9D9;
 
-     width: 320px;
 
- }
 
- /* 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;
 
- }
 
- .card .btn-primary {
 
-     margin-right: 1.2em;
 
- }
 
- #social-login {
 
-     margin-top: 40px;
 
-     padding-top: 40px;
 
-     border-top: 1px solid #ccc;
 
-     position: relative;
 
- }
 
- #social-login .btn {
 
-     float: none;
 
-     margin: auto 4px;
 
- }
 
- #social-login .btn .fa {
 
-     margin-left: 0;
 
-     margin-right: 4px;
 
- }
 
- #social-login .btn span {
 
-     display: inline-block;
 
-     vertical-align: top;
 
-     font-size: 16px;
 
-     margin-top: 5px;
 
- }
 
- #social-login h4 {
 
-     position: absolute;
 
-     top: -20px;
 
-     width: 100%;
 
-     text-align: center;
 
-     background-color: transparent;
 
- }
 
- #social-login h4 span {
 
-     background-color: #FFF;
 
-     padding: 0 12px;
 
- }
 
- /* gogs-user-profile */
 
- #user-avatar {
 
-     width: 200px;
 
-     height: 200px;
 
-     border-radius: 6px;
 
- }
 
- #user-avatar-commit {
 
-     width: 16px;
 
-     height: 16px;
 
-     border-radius: 2px;
 
- }
 
- #user-name,
 
- #user-full-name {
 
-     font-size: 1.6em;
 
-     font-weight: bold;
 
- }
 
- #user-name {
 
-     margin-bottom: 20px;
 
-     margin-top: 10px;
 
- }
 
- #user-full-name {
 
-     margin-top: 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-profile .profile-rel .col-md-6 {
 
-     text-align: center;
 
-     padding-bottom: 12px;
 
- }
 
- #user-profile .profile-rel strong {
 
-     font-size: 24px;
 
-     color: #444;
 
-     display: block;
 
- }
 
- #user-profile .profile-rel p {
 
-     margin-right: 0;
 
-     color: #888;
 
- }
 
- #user-activity .tab-pane {
 
-     padding: 20px;
 
- }
 
- #user-act-tabs li.active a {
 
-     border-bottom-color: #ddd;
 
- }
 
- /* gogits repo create */
 
- #repo-create,
 
- #org-create,
 
- #org-teams-create,
 
- #org-teams-edit {
 
-     width: 800px;
 
- }
 
- #repo-create textarea[name=desc] {
 
-     height: 8em;
 
- }
 
- #repo-import-auth {
 
-     width: 100%;
 
-     margin-top: 48px;
 
-     box-sizing: border-box;
 
- }
 
- #repo-import-auth .form-group {
 
-     box-sizing: border-box;
 
-     margin-left: 0;
 
-     margin-right: 0;
 
- }
 
- /* gogits user setting */
 
- #user-setting-nav.repo-setting-nav {
 
-     background-color: #FFF;
 
-     border: 1px solid #CCC;
 
-     padding: 0;
 
-     padding-top: 10px;
 
- }
 
- #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 1.2em;
 
-     font-size: 14px;
 
-     color: #3B73AF;
 
- }
 
- #user-setting-nav .list-group .list-group-item {
 
-     background-color: transparent;
 
-     margin-bottom: .6em;
 
- }
 
- #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 {
 
-     padding-right: 0;
 
- }
 
- #repo-setting-container .form-horizontal label {
 
-     line-height: 30px;
 
- }
 
- #repo-collab-list li.collab {
 
-     margin-bottom: .6em;
 
- }
 
- #repo-collab-list .avatar {
 
-     margin-right: 1em;
 
-     width: 40px;
 
- }
 
- #repo-collab-list a.member {
 
-     color: #444;
 
- }
 
- #repo-collab-list .remove-collab,
 
- #repo-hooks-list .remove-hook {
 
-     color: #DD4B39;
 
- }
 
- #repo-collab-form .dropdown-menu,
 
- #org-team-content .header .dropdown-menu {
 
-     margin-left: 15px;
 
-     margin-top: 4px;
 
-     padding: 0;
 
- }
 
- #repo-collab-form .dropdown-menu li,
 
- #org-team-content .header .dropdown-menu li {
 
-     padding: 0 1em;
 
-     line-height: 36px;
 
-     cursor: pointer;
 
-     font-weight: bold;
 
- }
 
- #repo-collab-form .dropdown-menu li:hover,
 
- #org-team-content .header .dropdown-menu li:hover {
 
-     background-color: #e8f0ff;
 
- }
 
- #repo-collab-form .dropdown-menu img,
 
- #org-team-content .header .dropdown-menu img {
 
-     width: 28px;
 
-     height: 28px;
 
-     margin-right: 1em;
 
-     vertical-align: middle;
 
-     margin-top: -3px;
 
- }
 
- #repo-collab-form .dropdown-menu ul,
 
- #org-team-content .header .dropdown-menu ul {
 
-     margin-bottom: 0;
 
- }
 
- #repo-hooks-list li {
 
-     line-height: 40px;
 
-     border-top: 1px solid #DDD;
 
-     height: 40px;
 
- }
 
- #repo-hooks-list .link {
 
-     display: inline-block;
 
-     max-width: 360px;
 
-     overflow: hidden;
 
-     text-overflow: ellipsis;
 
-     height: 40px;
 
-     line-height: 40px;
 
-     white-space: nowrap;
 
- }
 
- /* 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;
 
- }
 
- #user-dashboard-repo-new .btn-sm.dropdown-toggle {
 
-     padding: 3px 8px;
 
- }
 
- #user-dashboard-repo-new .dropdown-menu,
 
- #nav-repo-new .dropdown-menu {
 
-     padding: 0;
 
-     margin: 0;
 
- }
 
- #user-dashboard-repo-new ul,
 
- #nav-repo-new ul {
 
-     margin: 0;
 
-     width: 200px;
 
- }
 
- #user-dashboard-repo-new li a,
 
- #nav-repo-new li a {
 
-     line-height: 36px;
 
-     display: block;
 
-     padding: 0 18px;
 
-     color: #444;
 
- }
 
- #user-dashboard-repo-new li a:hover,
 
- #nav-repo-new li a:hover {
 
-     background: #0093c4;
 
-     color: #FFF;
 
- }
 
- #nav-repo-new button {
 
-     border: none;
 
-     background: transparent;
 
-     padding: 0;
 
-     width: 15px;
 
- }
 
- #nav-repo-new li .fa {
 
-     margin: 0 .5em;
 
- }
 
- #dashboard-switch .btn,
 
- #repo-owner-switch .btn {
 
-     height: 40px;
 
- }
 
- #dashboard-switch {
 
-     margin-top: 14px;
 
-     margin-right: 18px;
 
- }
 
- #dashboard-switch .dropdown-menu,
 
- #repo-owner-switch .dropdown-menu {
 
-     padding: 0;
 
- }
 
- #dashboard-switch-menu {
 
-     width: 180px;
 
-     margin-bottom: 0;
 
-     padding-bottom: 0;
 
- }
 
- #dashboard-switch-menu > li > a {
 
-     display: block;
 
-     padding: .8em 1.2em;
 
- }
 
- #dashboard-switch-menu > li > a:hover {
 
-     text-decoration: none;
 
- }
 
- #dashboard-switch-menu > li > a img,
 
- #dashboard-switch button img {
 
-     margin-right: 6px;
 
- }
 
- #dashboard-switch-menu > li {
 
-     border-bottom: 1px solid #eaeaea;
 
- }
 
- #dashboard-switch-menu > li .fa {
 
-     opacity: 0;
 
-     margin-right: 16px;
 
- }
 
- #dashboard-switch-menu > li.checked .fa {
 
-     opacity: 1;
 
- }
 
- #dashboard-switch-menu > li:last-child {
 
-     border-bottom: none;
 
- }
 
- /* 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 {
 
-     padding: 0 6px;
 
- }
 
- #repo-toolbar .nav .tmp a {
 
-     display: inline-block;
 
-     padding-left: 6px;
 
-     padding-right: 6px;
 
- }
 
- #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;
 
- }
 
- #repo-toolbar ul.navbar-right {
 
-     margin-right: 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;
 
- }
 
- #repo-clone .zclip {
 
-     left: auto !important;
 
- }
 
- /* #source */
 
- #source,
 
- #commits {
 
-     margin-top: -20px;
 
- }
 
- #commits-pager {
 
-     margin-top: 0;
 
- }
 
- #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;
 
- }
 
- #commits-search-form {
 
-     margin-top: 4px;
 
- }
 
- .commit-box .avatar,
 
- .diff-head-box .avatar {
 
-     width: 20px;
 
-     height: 20px;
 
-     margin-right: 8px;
 
-     vertical-align: top;
 
- }
 
- .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;
 
- }
 
- .guide-box .zclip {
 
-     left: auto !important;
 
- }
 
- .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,
 
- #issue .issue-edit-content .nav-tabs {
 
-     margin-bottom: 10px;
 
- }
 
- #issue .md-help {
 
-     margin-top: 6px;
 
- }
 
- #issue .filters ul {
 
-     margin-bottom: 0;
 
- }
 
- #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 li a:hover {
 
-     background-color: #DDD;
 
-     text-decoration: none;
 
- }
 
- #issue .filter-list li a.active {
 
-     background-color: #4183c4;
 
-     color: #FFF;
 
- }
 
- #issue .filter-option {
 
-     margin-bottom: 12px;
 
- }
 
- #issue .filters > div {
 
-     margin-bottom: 16px;
 
-     padding-bottom: 16px;
 
-     border-bottom: 1px solid #CCC;
 
- }
 
- #issue .label-filter li {
 
-     line-height: 24px;
 
-     margin-top: 4px;
 
- }
 
- #issue .label-filter a {
 
-     color: #666;
 
-     font-weight: bold;
 
-     padding: 0 4px;
 
-     display: block;
 
- }
 
- #issue .label-filter li.label-item:hover {
 
-     background-color: #FFF;
 
- }
 
- #issue .label-filter .count {
 
-     font-size: 12px;
 
-     margin-right: 6px;
 
-     color: #888;
 
- }
 
- #issue .label-filter .color {
 
-     float: left;
 
-     height: 12px;
 
-     width: 12px;
 
-     border-radius: 2px;
 
-     margin-right: 12px;
 
-     margin-top: 6px;
 
- }
 
- #issue .label-filter .del {
 
-     margin-top: -24px;
 
-     color: #888;
 
-     display: none;
 
- }
 
- #issue .label-filter .label-button {
 
-     margin-top: 16px;
 
- }
 
- #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 h5 .labels .label {
 
-     margin-left: 12px;
 
- }
 
- #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,
 
- #issue .issue-reference a.user {
 
-     font-weight: bold;
 
- }
 
- #issue .issue-child .issue-content .user .avatar {
 
-     height: 21px;
 
-     width: 21px;
 
- } 
 
- #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,
 
- #issue .issue-reference .issue-content {
 
-     line-height: 42px;
 
- }
 
- #issue .issue-closed,
 
- #issue .issue-opened,
 
- #issue .issue-reference {
 
-     border-bottom: 2px solid #CCC;
 
-     margin-bottom: 24px;
 
-     padding-bottom: 24px;
 
- }
 
- #issue .issue-reference {
 
-     padding-bottom: 6px;
 
- }
 
- #issue .issue-closed .label-danger,
 
- #issue .issue-opened .label-success,
 
- #issue .issue-reference .label-primary {
 
-     margin: 0.8em;
 
- }
 
- #issue .milestone-item .actions {
 
-     margin-top: 10px;
 
- }
 
- #issue .milestone-item .actions a {
 
-     margin-left: 8px;
 
- }
 
- #issue .milestone-item hr {
 
-     width: 100%;
 
-     padding-top: 8px;
 
-     margin-top: 48px;
 
-     margin-bottom: 8px;
 
- }
 
- #issue .milestone-item .label {
 
-     margin-top: 8px;
 
-     float: left;
 
-     padding: .5em;
 
-     margin-left: .8em;
 
- }
 
- #issue .assignee.dropdown-menu,
 
- #issue .assignee ul,
 
- #issue .milestone.dropdown-menu,
 
- #issue .milestone ul {
 
-     padding: 0;
 
-     margin: 0;
 
-     min-width: 300px;
 
- }
 
- #issue .issue-bar .assignee,
 
- #issue .issue-bar .assignee ul {
 
-     min-width: 160px;
 
- }
 
- #issue .issue-bar .assignee .dropdown-menu,
 
- #issue .issue-bar .milestone .dropdown-menu,
 
- #issue .issue-bar .labels .dropdown-menu {
 
-     padding: 0;
 
-     margin: 0;
 
- }
 
- #issue .assignee li,
 
- #issue .milestone li.clear-milestone {
 
-     padding: 4px 12px;
 
-     line-height: 30px;
 
- }
 
- #issue .milestone .milestone-item {
 
-     padding: 8px 12px;
 
- }
 
- #issue .milestone li.milestone-item {
 
-     border-bottom: 1px solid #CCC;
 
- }
 
- #issue .milestone li.milestone-item:last-child {
 
-     border-bottom: none;
 
- }
 
- #issue .milestone .milestone-item p {
 
-     margin-bottom: 0;
 
- }
 
- #issue .assignee li:hover,
 
- #issue .milestone li.clear-milestone:hover,
 
- #issue .milestone li.milestone-item:hover {
 
-     background-color: #e8f0ff;
 
-     cursor: pointer;
 
- }
 
- #issue .assignee li img,
 
- #issue .issue-bar .assignee img {
 
-     width: 28px;
 
-     height: 28px;
 
-     margin-right: 12px;
 
- }
 
- #issue .issue-bar > div {
 
-     padding-bottom: 8px;
 
-     margin-bottom: 40px;
 
-     border-bottom: 1px solid #CCC;
 
- }
 
- #issue .issue-bar .assignee {
 
-     line-height: 30px;
 
- }
 
- #issue .issue-bar .assignee .action,
 
- #issue .issue-bar .milestone .action,
 
- #issue .issue-bar .labels .action {
 
-     position: relative;
 
-     margin-top: -6px;
 
- }
 
- #issue .issue-bar .milestone .completion {
 
-     margin-top: 20px;
 
-     margin-bottom: 12px;
 
- }
 
- #issue .issue-bar .milestone .completion span {
 
-     display: block;
 
-     height: 12px;
 
-     background-color: #77c64a;
 
- }
 
- #issue .milestone .nav-tabs a {
 
-     padding: 4px 8px;
 
-     border-top: none;
 
- }
 
- #milestone {
 
-     margin-left: 24px;
 
-     margin-right: 12px;
 
- }
 
- #issue .issue-bar .labels .label-item {
 
-     padding: 2px 12px 4px 12px;
 
-     border-radius: 2px;
 
-     text-shadow: 0 0 2px #444;
 
- }
 
- #issue .label-selected .count,
 
- #issue .label-selected a {
 
-     color: #FAFAFA;
 
- }
 
- #issue .label-selected a {
 
-     text-shadow: 0 0 2px #444;
 
- }
 
- #issue .issue-bar .labels .label-white {
 
-     color: #FFF;
 
- }
 
- #issue .issue-bar .labels .label-black {
 
-     color: #444;
 
- }
 
- #issue .issue-bar .labels .dropdown-menu ul {
 
-     margin: 0;
 
-     width: 180px;
 
- }
 
- #issue .issue-bar .labels .dropdown-menu li {
 
-     line-height: 30px;
 
-     padding-left: 12px;
 
-     border-bottom: 1px solid #DDD;
 
- }
 
- #issue .issue-bar .labels .dropdown-menu li:hover {
 
-     background-color: #e8f0ff;
 
-     cursor: pointer;
 
- }
 
- #issue .issue-bar .labels .color {
 
-     display: inline-block;
 
-     width: 16px;
 
-     height: 16px;
 
-     vertical-align: text-top;
 
-     margin-right: 6px;
 
- }
 
- #issue .issue-bar .labels .no-checked .color {
 
-     margin-left: 26px;
 
- }
 
- #label-color-ipt2,
 
- #label-color-change-ipt2 {
 
-     width: 120px;
 
-     display: inline-block;
 
-     vertical-align: top;
 
- }
 
- #label-color-change-ipt2 {
 
-     margin-top: 1px;
 
- }
 
- /* 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;
 
- }
 
- /* admin dashboard/configuration */
 
- .admin-dl-horizontal > dt {
 
-     width: 220px;
 
- }
 
- .admin-dl-horizontal > dd {
 
-     margin-left: 240px;
 
- }
 
- /* release page */
 
- #release-head {
 
-     margin-top: 0;
 
-     padding-bottom: 30px;
 
-     margin-bottom: 0;
 
-     border-bottom: 1px solid #DDD;
 
- }
 
- #release .release-item .col-md-10 {
 
-     border-left: 1px solid #DDD;
 
-     position: relative;
 
- }
 
- #release .release-item .commit,
 
- #release .release-item .tag {
 
-     display: block;
 
-     margin-top: 12px;
 
- }
 
- #release .release-item.release-tag .commit {
 
-     margin-top: 6px;
 
- }
 
- #release .release-item .title {
 
-     line-height: 30px;
 
-     margin-top: 0;
 
- }
 
- #release .release-item .dot {
 
-     width: 9px;
 
-     height: 9px;
 
-     background-color: #ccc;
 
-     z-index: 999;
 
-     position: absolute;
 
-     display: block;
 
-     left: -5px;
 
-     top: 30px;
 
-     border-radius: 6px;
 
-     border: 1px solid #FFF;
 
- }
 
- #release .release-item > div {
 
-     padding-top: 20px;
 
-     padding-bottom: 20px;
 
- }
 
- #release .release-item p.info {
 
-     line-height: 20px;
 
-     color: #666;
 
-     margin-bottom: 18px;
 
- }
 
- #release .release-item div.desc {
 
-     margin-bottom: 18px;
 
- }
 
- #release .release-item p.info > *,
 
- #release .release-item .download a {
 
-     margin-right: 12px;
 
- }
 
- #release .release-item .info .avatar {
 
-     vertical-align: middle;
 
- }
 
- #release-new-form {
 
-     margin-top: 24px;
 
- }
 
- #release-new-form .target-at {
 
-     margin: 0 1em;
 
- }
 
- #release-new-form .target-text {
 
-     color: #888;
 
- }
 
- #release-new-target-branch-list {
 
-     padding-top: 0;
 
-     padding-bottom: 0;
 
-     min-width: 200px;
 
- }
 
- #release-new-target-branch-list ul {
 
-     margin-bottom: 0;
 
- }
 
- #release-new-target-branch-list li {
 
-     padding: 8px 20px;
 
- }
 
- #release-new-target-branch-list li a {
 
-     margin-left: 0;
 
-     background-color: transparent;
 
-     padding: 0;
 
- }
 
- #release-new-target-branch-list li a:hover {
 
-     background-image: none;
 
- }
 
- #release-new-target-branch-list li:hover {
 
-     background-color: #0093c4;
 
- }
 
- #release-new-target-branch-list li:hover a {
 
-     color: #FFF;
 
- }
 
- #release-new-title {
 
-     width: 50%;
 
- }
 
- #release-new-content-div {
 
-     margin-top: 16px;
 
-     padding-left: 0;
 
- }
 
- #release-new-content-div .md-help {
 
-     margin-top: 6px;
 
- }
 
- #release-textarea .form-group {
 
-     display: block;
 
- }
 
- #release-new-content {
 
-     width: 100%;
 
-     margin: 16px 0;
 
- }
 
- #release-preview {
 
-     margin: 6px 0;
 
- }
 
- /*  organization */
 
- #body-nav.org-nav {
 
-     height: 140px;
 
-     padding: 16px 0;
 
- }
 
- #body-nav.org-nav.org-nav-auto {
 
-     height: auto;
 
- }
 
- .org-nav > .container {
 
-     padding-left: 0;
 
-     padding-left: 0;
 
- }
 
- .org-nav .org-logo {
 
-     margin-right: 16px;
 
-     width: 100px;
 
-     height: 100px;
 
- }
 
- .org-nav .org-small-logo {
 
-     margin-right: 16px;
 
-     width: 50px;
 
-     height: 50px;
 
- }
 
- .org-nav .org-name {
 
-     margin-top: 0;
 
- }
 
- .org-nav-auto .org-name {
 
-     font-size: 1.4em;
 
-     line-height: 48px;
 
- }
 
- #body-nav.org-nav-auto .nav {
 
-     margin-top: 6px;
 
- }
 
- #body-nav.org-nav-auto .nav a:hover {
 
-     text-decoration: none;
 
- }
 
- .org-description {
 
-     font-size: 16px;
 
- }
 
- .org-meta li,
 
- .org-meta li a,
 
- .org-repo-update,
 
- .org-repo-status,
 
- .org-team-meta {
 
-     color: #888;
 
- }
 
- .org-meta li {
 
-     margin-right: 12px;
 
- }
 
- .org-meta li a:hover {
 
-     text-decoration: underline;
 
- }
 
- .org-meta .fa {
 
-     margin-left: 0;
 
- }
 
- .org-main {
 
-     padding-left: 0;
 
- }
 
- .org-sidebar {
 
-     margin-top: -100px;
 
- }
 
- .org-panel .panel-heading {
 
-     font-size: 18px;
 
- }
 
- .org-repo-status {
 
-     font-family: Verdana, Arial, Helvetica, sans-serif;
 
- }
 
- .org-repo-item {
 
-     border-bottom: 1px solid #DDD;
 
-     padding-bottom: 18px;
 
- }
 
- .org-member img {
 
-     width: 60px;
 
-     height: 60px;
 
-     border-radius: 4px;
 
- }
 
- .org-member {
 
-     display: inline-block;
 
-     padding: 2px;
 
- }
 
- .org-team-name {
 
-     font-size: 15px;
 
-     margin-bottom: 0;
 
-     color: #444;
 
- }
 
- .org-team {
 
-     border-bottom: 1px solid #DDD;
 
-     margin-bottom: 12px;
 
- }
 
- .org-team:last-child {
 
-     border: none;
 
- }
 
- .org-team a {
 
-     display: block;
 
- }
 
- .org-team a:hover {
 
-     text-decoration: none;
 
- }
 
- .org-team a:hover .org-team-name {
 
-     color: #0079bc !important;
 
- }
 
- #org-members {
 
-     margin-right: 30px;
 
- }
 
- #org-members .member .avatar img,
 
- #org-team-members .member .avatar img {
 
-     width: 50px;
 
-     height: 50px;
 
- }
 
- #org-members .member,
 
- #org-team-members .member {
 
-     padding-bottom: 20px;
 
-     margin-bottom: 20px;
 
-     border-bottom: 1px solid #DDD;
 
-     height: 70px;
 
- }
 
- #org-members .member .name,
 
- #org-team-members .member .name {
 
-     padding-top: 4px;
 
- }
 
- #org-members .member .nick,
 
- #org-team-members .member .nick {
 
-     display: block;
 
-     color: #888;
 
- }
 
- #org-members .member .name a,
 
- #org-team-members .member .name a {
 
-     color: #444;
 
- }
 
- #org-members .member .name strong,
 
- #org-team-members .member .name strong {
 
-     font-size: 1.2em;
 
- }
 
- #org-members .status,
 
- #org-members .role,
 
- #org-team-members .status,
 
- #org-team-members .role {
 
-     line-height: 48px;
 
-     text-align: right;
 
- }
 
- #org-teams .org-team .panel-heading {
 
-     margin-top: 0;
 
- }
 
- #org-teams .org-team .panel-heading a {
 
-     color: #444;
 
- }
 
- #org-teams .org-team-members {
 
-     margin-top: 18px;
 
- }
 
- #org-teams .org-team-members img {
 
-     width: 40px;
 
-     height: 40px;
 
-     margin-right: 12px;
 
- }
 
- #org-teams .org-team-members a {
 
-     display: inline-block;
 
- }
 
- #org-teams .org-team .panel-footer {
 
-     height: 60px;
 
- }
 
- #org-teams .org-team {
 
-     border-bottom: none;
 
- }
 
- #org-team-card {
 
-     border: 1px solid #CCC;
 
-     background-color: #FFF;
 
- }
 
- #org-team-card .meta .num {
 
-     font-weight: bold;
 
-     color: #444;
 
-     font-size: 1.2em;
 
- }
 
- #org-team-card .meta > div {
 
-     margin-bottom: 12px;
 
- }
 
- #org-team-card .meta a:hover {
 
-     text-decoration: none;
 
-     font-weight: bold;
 
- }
 
- #org-team-card .action a {
 
-     margin-right: 12px;
 
- }
 
- #org-team-card .action a:hover {
 
-     text-decoration: none;
 
- }
 
- #org-team-content .header {
 
-     height: 50px;
 
- }
 
- #org-team-content .header > form {
 
-     padding-right: 0;
 
- }
 
- #org-team-repos .repo{
 
-     padding-bottom: 20px;
 
-     margin-bottom: 20px;
 
-     border-bottom: 1px solid #DDD;
 
-     padding-left: 15px;
 
- }
 
- #org-team-repos .repo-name{
 
-     font-size: 1.2em;
 
-     color: #444;
 
-     font-weight: bold;
 
-     line-height: 30px;
 
- }
 
- .issue-main .attachments {
 
-     margin: 0px 10px 10px 10px;
 
- }
 
- .issue-main .attachments .attachment-label {
 
-     margin-right: 5px;
 
- }
 
- .attachment-preview {
 
-     position: absolute;
 
-     top: 0px;
 
-     bottom: 0px;
 
-     
 
-     margin: 5px;
 
-     padding: 8px;
 
-     background: #fff;
 
-     border: 1px solid #d8d8d8;
 
-     box-shadow: 0 0 5px 1px #d8d8d8;
 
- }
 
- .attachment-preview-img {
 
-     border: 1px solid #d8d8d8;
 
- }
 
- #attachments-button {
 
-     float: left;
 
- }
 
- #attached {
 
-     height: 18px;
 
-     margin: 10px 10px 15px 10px;
 
- }
 
- #attached-list .label {
 
-     margin-right: 10px;
 
- }
 
- #issue-create-form #attached {
 
-     margin-bottom: 0;
 
- }
 
 
  |