2013-01-17 11:35:35 -08:00
|
|
|
html {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
2012-01-26 19:25:35 +02:00
|
|
|
/** LAYOUT **/
|
2012-01-16 21:07:57 +02:00
|
|
|
|
2012-08-29 21:23:43 +03:00
|
|
|
body {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-bottom: 20px;
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.container {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding-top: 0;
|
|
|
|
z-index: 5;
|
2012-02-19 16:31:11 +02:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.container .content {
|
2012-11-23 17:51:38 +01:00
|
|
|
margin: 0 0;
|
2012-01-26 19:25:35 +02:00
|
|
|
}
|
|
|
|
|
2012-02-08 01:00:49 +02:00
|
|
|
.visible_link,
|
2012-08-13 08:52:10 +03:00
|
|
|
.author_link {
|
2012-02-11 23:22:33 +02:00
|
|
|
color: $link_color;
|
2012-01-29 12:04:09 +02:00
|
|
|
}
|
2012-02-11 19:56:18 +02:00
|
|
|
|
2012-12-13 21:44:55 +02:00
|
|
|
.help li { color:$style_color; }
|
2012-02-18 14:12:48 +02:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.back_link {
|
2012-11-23 17:33:43 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: bold;
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 10px 0;
|
2012-11-23 17:33:43 +01:00
|
|
|
padding-bottom: 0;
|
2012-02-18 14:12:48 +02:00
|
|
|
}
|
2012-02-18 14:43:35 +02:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.info_link {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-right: 5px;
|
|
|
|
float: left;
|
2012-02-18 14:43:35 +02:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
img {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 20px;
|
2012-02-18 14:43:35 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-18 15:59:01 +02:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.download_repo_link {
|
2012-02-20 08:39:03 +02:00
|
|
|
background: url("images.png") no-repeat 0 -48px;
|
2012-11-23 17:33:43 +01:00
|
|
|
padding-left: 20px;
|
2012-02-20 08:39:03 +02:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
table a code {
|
2012-02-20 08:39:03 +02:00
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2012-02-21 22:04:01 +02:00
|
|
|
|
|
|
|
.span12 hr{
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
2012-02-21 23:09:46 +02:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.loading {
|
2012-11-23 17:51:38 +01:00
|
|
|
margin: 20px auto;
|
2012-03-26 21:41:58 +03:00
|
|
|
background: url(ajax_loader.gif) no-repeat center center;
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
2012-12-21 13:07:34 +02:00
|
|
|
&.loading-gray {
|
|
|
|
background: url(ajax_loader_gray.gif) no-repeat center center;
|
|
|
|
}
|
2012-02-24 22:19:47 +02:00
|
|
|
}
|
2012-02-27 00:41:53 +02:00
|
|
|
|
|
|
|
/** FLASH message **/
|
2012-11-29 22:51:51 +01:00
|
|
|
#flash-container {
|
2012-11-23 17:33:43 +01:00
|
|
|
height: 50px;
|
|
|
|
position: fixed;
|
|
|
|
z-index: 10001;
|
|
|
|
top: 0px;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
overflow: hidden;
|
|
|
|
background: white;
|
|
|
|
cursor: pointer;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-bottom: 1px solid #ccc;
|
2012-11-29 22:51:51 +01:00
|
|
|
text-align: center;
|
|
|
|
display: none;
|
2012-02-27 00:41:53 +02:00
|
|
|
|
|
|
|
h4 {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #666;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-size: 18px;
|
|
|
|
line-height: 38px;
|
|
|
|
padding-top: 5px;
|
|
|
|
margin: 2px;
|
|
|
|
font-weight: normal;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.git_url_wrapper {
|
|
|
|
margin-right:50px
|
|
|
|
}
|
|
|
|
|
|
|
|
span.update-author {
|
2012-11-23 17:33:43 +01:00
|
|
|
display: block;
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #999;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
2012-12-13 21:44:55 +02:00
|
|
|
strong {
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-loader {
|
2012-11-23 17:33:43 +01:00
|
|
|
float: left;
|
|
|
|
margin: 10px;
|
|
|
|
display: none;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
.user-mention {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #2FA0BB;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-weight: bold;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
|
2012-08-29 21:23:43 +03:00
|
|
|
.neib {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-right: 10px;
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
2013-01-08 08:14:05 +03:00
|
|
|
padding: 0px 4px;
|
|
|
|
font-size: 10px;
|
|
|
|
font-style: normal;
|
|
|
|
background-color: $link_color;
|
2012-09-18 09:17:55 +03:00
|
|
|
|
|
|
|
&.label-success {
|
|
|
|
background-color: #8D8;
|
|
|
|
color: #333;
|
|
|
|
text-shadow: 0 1px 1px white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.label-error {
|
|
|
|
background-color: #D88;
|
|
|
|
color: #333;
|
|
|
|
text-shadow: 0 1px 1px white;
|
|
|
|
}
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
@extend .form-horizontal;
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
@extend .form-actions;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clearfix {
|
|
|
|
@extend .control-group;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input {
|
|
|
|
@extend .controls;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
@extend .control-label;
|
|
|
|
}
|
|
|
|
.xlarge {
|
|
|
|
@extend .input-xlarge;
|
|
|
|
}
|
|
|
|
.xxlarge {
|
|
|
|
@extend .input-xxlarge;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.field_with_errors {
|
2012-11-23 17:33:43 +01:00
|
|
|
display: inline;
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.breadcrumb {
|
2012-11-23 17:33:43 +01:00
|
|
|
background: white;
|
|
|
|
border: none;
|
2012-08-29 21:23:43 +03:00
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
text-shadow: 0 1px 0 white
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #474D57;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 14px;
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.arrow {
|
|
|
|
background: url("images.png") no-repeat -85px -77px;
|
|
|
|
width: 19px;
|
|
|
|
height: 16px;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
|
|
|
left: -10px;
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=text] {
|
|
|
|
&.large_text {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 6px;
|
|
|
|
font-size: 16px;
|
2012-08-29 21:23:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
input.git_clone_url {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 325px;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.merge-request-form-holder {
|
2012-08-13 08:52:10 +03:00
|
|
|
select {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 300px;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Issues **/
|
|
|
|
#issue_assignee_id {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 300px;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#new_issue_dialog textarea{
|
|
|
|
height: 100px;
|
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.project_list_url {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 250px;
|
2012-02-27 00:41:53 +02:00
|
|
|
background:#fff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.line_holder {
|
|
|
|
&:hover {
|
|
|
|
td {
|
2012-02-27 00:41:53 +02:00
|
|
|
background: #FFFFCF !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
li.commit {
|
|
|
|
.avatar {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 24px;
|
2012-08-16 09:13:50 +03:00
|
|
|
top:-5px;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-right: 10px;
|
|
|
|
margin-left: 10px;
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
code {
|
2012-05-15 17:46:18 +04:00
|
|
|
padding: 2px 2px 0;
|
|
|
|
margin-top: -2px;
|
|
|
|
&:hover {
|
|
|
|
color: black;
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
}
|
2012-02-27 00:41:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
p.time {
|
|
|
|
color: #999;
|
|
|
|
font-size: 90%;
|
|
|
|
margin: 30px 3px 3px 2px;
|
|
|
|
}
|
2012-02-28 22:59:36 +02:00
|
|
|
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.styled_image {
|
2012-11-23 17:51:38 +01:00
|
|
|
border: 2px solid #ddd;
|
2012-03-01 21:23:50 +02:00
|
|
|
}
|
2012-03-01 22:43:04 +02:00
|
|
|
|
|
|
|
|
2012-03-17 02:46:47 -03:00
|
|
|
|
2012-03-25 19:05:24 +03:00
|
|
|
/* Fix for readme code (stopped it from being yellow) */
|
|
|
|
.readme {
|
2012-03-17 13:02:48 -03:00
|
|
|
pre {
|
|
|
|
background: white !important;
|
2012-08-13 08:52:10 +03:00
|
|
|
|
2012-03-17 13:02:48 -03:00
|
|
|
code {
|
|
|
|
background: none !important;
|
2012-03-17 02:46:47 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-17 12:49:23 -03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.highlight_word {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #EEDC94;
|
2012-03-16 01:14:39 +02:00
|
|
|
}
|
2012-03-16 01:45:46 +02:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.status_info {
|
2012-11-23 17:33:43 +01:00
|
|
|
font-size: 14px;
|
2012-11-23 17:51:38 +01:00
|
|
|
padding: 5px 15px;
|
2012-12-13 21:44:55 +02:00
|
|
|
line-height: 26px;
|
2012-11-23 17:33:43 +01:00
|
|
|
text-align: center;
|
2012-12-13 06:14:05 +03:00
|
|
|
float: right;
|
|
|
|
position: relative;
|
2012-12-13 21:44:55 +02:00
|
|
|
top: -5px;
|
|
|
|
@include border-radius(4px);
|
2012-06-05 19:45:18 +03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
&.error {
|
2012-06-05 19:45:18 +03:00
|
|
|
background: #DA4E49;
|
2012-12-13 21:44:55 +02:00
|
|
|
color: #FFF;
|
2012-06-05 19:45:18 +03:00
|
|
|
}
|
2012-03-16 01:45:46 +02:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.arrow{
|
2012-03-19 22:52:16 +02:00
|
|
|
background: #E3E5EA;
|
2012-04-01 00:23:34 +03:00
|
|
|
padding: 5px;
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-top: 5px;
|
2012-11-23 17:51:38 +01:00
|
|
|
@include border-radius(5px);
|
2012-03-19 22:52:16 +02:00
|
|
|
text-shadow: none;
|
|
|
|
color: #999;
|
|
|
|
line-height: 16px;
|
2012-11-23 17:33:43 +01:00
|
|
|
font-weight: bold;
|
2012-03-22 00:09:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.thin_area{
|
|
|
|
height: 150px;
|
|
|
|
}
|
2012-03-22 00:09:56 +02:00
|
|
|
|
2012-03-24 13:08:42 -03:00
|
|
|
// Fixes alignment on notes.
|
|
|
|
.new_note {
|
|
|
|
label {
|
2012-11-23 17:33:43 +01:00
|
|
|
text-align: left;
|
2012-03-24 13:08:42 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-24 14:36:14 -03:00
|
|
|
// Fix issue with notes & lists creating a bunch of bottom borders.
|
|
|
|
li.note {
|
2012-03-26 07:40:51 +03:00
|
|
|
img { max-width:100% }
|
2012-03-24 14:36:14 -03:00
|
|
|
.note-title {
|
|
|
|
li {
|
|
|
|
border-bottom:none !important;
|
|
|
|
}
|
|
|
|
.file {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding-left: 20px;
|
2012-03-24 14:36:14 -03:00
|
|
|
background:url("icon-attachment.png") no-repeat left center;
|
|
|
|
}
|
|
|
|
}
|
2012-03-25 19:05:24 +03:00
|
|
|
}
|
2012-03-26 07:40:51 +03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.markdown {
|
|
|
|
img {
|
2012-11-23 17:33:43 +01:00
|
|
|
max-width: 100%;
|
2012-03-26 07:40:51 +03:00
|
|
|
}
|
|
|
|
}
|
2012-03-27 23:04:21 +03:00
|
|
|
|
|
|
|
.wiki_content code, .readme code{
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
2012-04-02 21:13:44 +03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.team_member_show {
|
|
|
|
td:first-child {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #aaa;
|
2012-04-02 21:13:44 +03:00
|
|
|
}
|
|
|
|
}
|
2012-04-10 20:06:17 +03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
.remember_me {
|
2012-11-23 17:33:43 +01:00
|
|
|
text-align: left;
|
2012-04-11 23:50:13 +03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
input {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin: 0;
|
2012-04-11 23:50:13 +03:00
|
|
|
}
|
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
span {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding-left: 5px;
|
2012-04-11 23:50:13 +03:00
|
|
|
}
|
2012-04-10 20:06:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-20 19:41:49 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Admin area
|
|
|
|
*
|
|
|
|
*/
|
2012-08-13 08:52:10 +03:00
|
|
|
.admin_dash {
|
|
|
|
.data {
|
|
|
|
a {
|
|
|
|
h1 {
|
2012-11-23 17:33:43 +01:00
|
|
|
line-height: 48px;
|
|
|
|
font-size: 48px;
|
|
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
2013-01-10 08:43:25 +02:00
|
|
|
font-weight: normal;
|
2012-04-20 19:41:49 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-05-27 01:09:44 +03:00
|
|
|
|
|
|
|
.rss-icon {
|
|
|
|
img {
|
2012-11-23 17:33:43 +01:00
|
|
|
width: 24px;
|
|
|
|
vertical-align: top;
|
2012-05-27 01:09:44 +03:00
|
|
|
}
|
2012-06-12 23:13:42 +03:00
|
|
|
|
2012-08-13 08:52:10 +03:00
|
|
|
strong {
|
2012-11-23 17:33:43 +01:00
|
|
|
line-height: 24px;
|
2012-06-12 23:13:42 +03:00
|
|
|
}
|
2012-05-27 01:09:44 +03:00
|
|
|
}
|
2012-05-28 20:19:54 +03:00
|
|
|
|
2012-05-31 23:30:54 +03:00
|
|
|
|
2012-06-02 01:00:29 +03:00
|
|
|
|
|
|
|
/* CHZN reset few styles */
|
2012-08-13 08:52:10 +03:00
|
|
|
.chzn-container-single .chzn-single {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #FFF;
|
2012-06-18 20:18:14 +03:00
|
|
|
border: 1px solid #bbb;
|
2012-11-23 17:33:43 +01:00
|
|
|
box-shadow: none;
|
2012-06-02 01:00:29 +03:00
|
|
|
}
|
2012-08-13 08:52:10 +03:00
|
|
|
.chzn-container-active .chzn-single {
|
2012-11-23 17:51:38 +01:00
|
|
|
background: #fff;
|
2012-06-02 01:00:29 +03:00
|
|
|
}
|
2012-06-12 17:43:16 +03:00
|
|
|
|
2012-06-13 20:02:30 +03:00
|
|
|
|
2012-06-20 21:29:55 +03:00
|
|
|
.supp_diff_link,
|
2013-01-05 02:18:39 +01:00
|
|
|
.show-all-commits {
|
2012-11-23 17:33:43 +01:00
|
|
|
cursor: pointer;
|
2012-06-20 21:29:55 +03:00
|
|
|
}
|
2012-06-21 08:29:53 +03:00
|
|
|
|
|
|
|
.merge_request,
|
2012-08-13 08:52:10 +03:00
|
|
|
.issue {
|
|
|
|
&.today{
|
2012-06-21 16:43:40 +03:00
|
|
|
background: #EFE;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-color: #CEC;
|
2012-06-21 08:29:53 +03:00
|
|
|
}
|
2012-08-13 08:52:10 +03:00
|
|
|
&.closed {
|
2012-06-21 17:23:25 +03:00
|
|
|
background: #F5f5f5;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-color: #E5E5E5;
|
2012-06-21 08:29:53 +03:00
|
|
|
}
|
2012-08-13 08:52:10 +03:00
|
|
|
&.merged {
|
2012-06-26 19:08:44 +03:00
|
|
|
background: #F5f5f5;
|
2012-11-23 17:51:38 +01:00
|
|
|
border-color: #E5E5E5;
|
2012-06-21 08:29:53 +03:00
|
|
|
}
|
2012-07-10 21:26:01 +03:00
|
|
|
}
|
2012-08-13 08:52:10 +03:00
|
|
|
|
2012-08-16 09:13:50 +03:00
|
|
|
.git_error_tips {
|
|
|
|
@extend .span6;
|
2012-11-23 17:33:43 +01:00
|
|
|
text-align: left;
|
|
|
|
margin-top: 40px;
|
2012-08-16 09:13:50 +03:00
|
|
|
pre {
|
2012-11-23 17:33:43 +01:00
|
|
|
background: white;
|
|
|
|
border: none;
|
2012-08-16 09:13:50 +03:00
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
}
|
2012-08-22 03:56:53 +03:00
|
|
|
|
|
|
|
.error_message {
|
|
|
|
@extend .cred;
|
2012-11-21 06:14:05 +03:00
|
|
|
border-left: 4px solid #E99;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
background: #FEE;
|
|
|
|
padding-left: 20px;
|
2012-11-29 18:09:27 +02:00
|
|
|
|
|
|
|
&.centered {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2012-08-22 03:56:53 +03:00
|
|
|
}
|
2012-09-12 18:56:44 +03:00
|
|
|
|
2013-01-11 21:04:21 +01:00
|
|
|
.warning_message {
|
|
|
|
border-left: 4px solid #ed9;
|
|
|
|
color: #b90;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
background: #ffffe6;
|
|
|
|
padding-left: 20px;
|
|
|
|
|
|
|
|
&.centered {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-12 18:56:44 +03:00
|
|
|
.oauth_select_holder {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 20px;
|
2012-09-12 18:56:44 +03:00
|
|
|
img {
|
2012-11-23 17:33:43 +01:00
|
|
|
padding: 5px;
|
|
|
|
margin-right: 10px;
|
2012-09-12 18:56:44 +03:00
|
|
|
}
|
|
|
|
.active {
|
|
|
|
img {
|
2012-11-23 17:51:38 +01:00
|
|
|
border: 1px solid #ccc;
|
2012-11-23 17:33:43 +01:00
|
|
|
background: $hover;
|
2012-09-12 18:56:44 +03:00
|
|
|
@include border-radius(5px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-09-14 19:13:25 +03:00
|
|
|
|
|
|
|
.btn-build-token {
|
|
|
|
float: left;
|
|
|
|
padding: 6px 20px;
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
2012-09-19 09:14:07 +03:00
|
|
|
|
|
|
|
.gitlab-promo {
|
|
|
|
a {
|
2012-11-23 17:51:38 +01:00
|
|
|
color: #aaa;
|
2012-09-19 09:14:07 +03:00
|
|
|
margin-right: 30px;
|
|
|
|
}
|
|
|
|
}
|
2012-09-26 16:49:20 +03:00
|
|
|
|
2012-10-16 09:43:22 +03:00
|
|
|
pre {
|
|
|
|
&.clean {
|
2012-11-23 17:33:43 +01:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2012-10-16 09:43:22 +03:00
|
|
|
}
|
|
|
|
}
|
2012-10-29 22:40:00 +02:00
|
|
|
|
2012-12-14 08:34:05 +03:00
|
|
|
.milestone {
|
|
|
|
&.milestone-closed {
|
|
|
|
background: #eee;
|
|
|
|
}
|
|
|
|
.progress {
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
2012-10-29 22:40:00 +02:00
|
|
|
}
|
2012-10-29 23:45:11 +02:00
|
|
|
|
|
|
|
.float-link {
|
2012-11-23 17:33:43 +01:00
|
|
|
float: left;
|
|
|
|
margin-right: 15px;
|
2012-10-29 23:45:11 +02:00
|
|
|
.s16 {
|
2012-11-23 17:33:43 +01:00
|
|
|
margin-right: 5px;
|
2012-10-29 23:45:11 +02:00
|
|
|
}
|
|
|
|
}
|
2012-11-21 08:24:05 +03:00
|
|
|
|
|
|
|
.dashboard-search-filter {
|
|
|
|
padding:5px;
|
|
|
|
|
|
|
|
.search-text-input {
|
|
|
|
float:left;
|
|
|
|
@extend .span2;
|
|
|
|
}
|
|
|
|
.btn {
|
|
|
|
margin-left: 5px;
|
|
|
|
float:left;
|
|
|
|
}
|
|
|
|
}
|
2012-11-28 19:40:54 +02:00
|
|
|
|
|
|
|
h1.http_status_code {
|
|
|
|
font-size: 56px;
|
|
|
|
line-height: 100px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #456;
|
|
|
|
}
|
2012-12-02 19:28:23 +02:00
|
|
|
|
|
|
|
.control-group {
|
|
|
|
.controls {
|
|
|
|
span {
|
|
|
|
&.descr {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
left: 5px;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-11-16 23:25:07 +01:00
|
|
|
|
|
|
|
img.emoji {
|
|
|
|
height: 20px;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 20px;
|
|
|
|
}
|