Commit 2acb030b authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Refactor button css and do some cleanup

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 7ad4521f
...@@ -22,8 +22,8 @@ $brand-info: $gl-info; ...@@ -22,8 +22,8 @@ $brand-info: $gl-info;
$brand-warning: $gl-warning; $brand-warning: $gl-warning;
$brand-danger: $gl-danger; $brand-danger: $gl-danger;
$border-radius-base: 3px !default; $border-radius-base: 2px !default;
$border-radius-large: 5px !default; $border-radius-large: 2px !default;
$border-radius-small: 2px !default; $border-radius-small: 2px !default;
......
...@@ -5,6 +5,7 @@ html { ...@@ -5,6 +5,7 @@ html {
body { body {
padding-top: $header-height; padding-top: $header-height;
text-rendering: geometricPrecision;
} }
} }
......
body {
text-rendering: geometricPrecision;
}
@mixin btn-default { @mixin btn-default {
@include border-radius(2px); @include border-radius(2px);
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
text-transform: uppercase; text-transform: uppercase;
...@@ -13,17 +9,17 @@ body { ...@@ -13,17 +9,17 @@ body {
line-height: 18px; line-height: 18px;
padding: 11px 16px; padding: 11px 16px;
letter-spacing: .4px; letter-spacing: .4px;
&:hover { &:hover {
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
} }
&:focus { &:focus {
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
} }
&:active { &:active {
@include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12)); @include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12));
border-width: 1px; border-width: 1px;
...@@ -33,7 +29,7 @@ body { ...@@ -33,7 +29,7 @@ body {
@mixin btn-middle { @mixin btn-middle {
@include border-radius(2px); @include border-radius(2px);
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
text-transform: uppercase; text-transform: uppercase;
...@@ -42,22 +38,22 @@ body { ...@@ -42,22 +38,22 @@ body {
line-height: 18px; line-height: 18px;
padding: 11px 24px; padding: 11px 24px;
letter-spacing: .4px; letter-spacing: .4px;
&:hover { &:hover {
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
} }
&:focus { &:focus {
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
} }
&:active { &:active {
@include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12)); @include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12));
border-width: 1px; border-width: 1px;
border-style: solid; border-style: solid;
} }
} }
...@@ -65,118 +61,113 @@ body { ...@@ -65,118 +61,113 @@ body {
background-color: #28b061; background-color: #28b061;
border: 1px solid #26a65c; border: 1px solid #26a65c;
color: #fff; color: #fff;
&:hover {
background-color: #26ab5d;
border: 1px solid #229954;
color: #fff;
}
&:focus {
background-color: #26ab5d;
border: 1px solid #229954;
color: #fff;
}
&:active {
@include box-shadow (inset 0 0 4px rgba(0, 0, 0, 0.12));
background-color: #23a158 !important;
border: 1px solid #229954 !important;
color: #fff !important;
}
}
/*Butons*/ &:hover {
background-color: #26ab5d;
border: 1px solid #229954;
color: #fff;
}
&:focus {
background-color: #26ab5d;
border: 1px solid #229954;
color: #fff;
}
&:active {
@include box-shadow (inset 0 0 4px rgba(0, 0, 0, 0.12));
background-color: #23a158 !important;
border: 1px solid #229954 !important;
color: #fff !important;
}
}
@mixin btn-project { @mixin btn-gray {
background-color: #f0f2f5; background-color: #f0f2f5;
border-color: #dce0e5; border-color: #dce0e5;
color: #313236; color: #313236;
&:hover { &:hover {
border-color:#dce0e5; border-color:#dce0e5;
background-color: #ebeef2; background-color: #ebeef2;
color: #313236; color: #313236;
} }
&:focus { &:focus {
border-color: #dce0e5; border-color: #dce0e5;
background-color: #ebeef2; background-color: #ebeef2;
color: #313236; color: #313236;
} }
&:active { &:active {
@include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12)); @include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12));
color: #313236 !important; color: #313236 !important;
border-color: #c6cacf !important; border-color: #c6cacf !important;
background-color: #e4e7ed !important; background-color: #e4e7ed !important;
} }
} }
@mixin btn-light { @mixin btn-white {
background-color: #fff; background-color: #fff;
border-color: #dce0e5; border-color: #dce0e5;
color: #313236; color: #313236;
&:hover { &:hover {
border-color:#dce0e5; border-color:#dce0e5;
background-color: #f0f2f5; background-color: #f0f2f5;
color: #313236; color: #313236;
} }
&:focus { &:focus {
border-color: #dce0e5; border-color: #dce0e5;
background-color: #f0f2f5; background-color: #f0f2f5;
color: #313236; color: #313236;
} }
&:active { &:active {
@include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12)); @include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12));
color: #313236 !important; color: #313236 !important;
border-color: #c6cacf !important; border-color: #c6cacf !important;
background-color: #e4e7ed !important; background-color: #e4e7ed !important;
} }
} }
@mixin btn-remove { @mixin btn-red {
background-color: #f72e60; background-color: #f72e60;
border-color: #ee295a; border-color: #ee295a;
&:hover { &:hover {
background-color: #e82757; background-color: #e82757;
border-color: #e32555; border-color: #e32555;
} }
&:focus { &:focus {
background-color: #e82757; background-color: #e82757;
border-color: #e32555; border-color: #e32555;
} }
&:active { &:active {
@include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12)); @include box-shadow(inset 0 0 4px rgba(0, 0, 0, 0.12));
background-color: #d42450 !important; background-color: #d42450 !important;
border-color: #e12554 !important; border-color: #e12554 !important;
} }
} }
.btn-info { .btn {
@include btn-default; @include btn-default;
@include btn-project; @include btn-white;
}
.btn-success { &.btn-success {
@include btn-default; @include btn-green;
@include btn-green; }
}
.btn { &.btn-gray {
@include btn-default; @include btn-gray;
}
&.btn-new { &.btn-new {
@extend .btn-success; @extend .btn-success;
...@@ -264,4 +255,4 @@ body { ...@@ -264,4 +255,4 @@ body {
color: #fff; color: #fff;
} }
} }
} }
\ No newline at end of file
...@@ -29,9 +29,6 @@ input[type='text'].danger { ...@@ -29,9 +29,6 @@ input[type='text'].danger {
border-top: 1px solid $border-color; border-top: 1px solid $border-color;
} }
@media (min-width: $screen-sm-min) {
}
label { label {
&.control-label { &.control-label {
@extend .col-sm-2; @extend .col-sm-2;
...@@ -84,20 +81,13 @@ label { ...@@ -84,20 +81,13 @@ label {
.form-group .control-label { .form-group .control-label {
font-weight: normal; font-weight: normal;
font-color: #313236 !important;
}
.form-control {
@include border-radius (2px);
} }
.form-control::-webkit-input-placeholder{ .form-control::-webkit-input-placeholder {
color:#7f8fa4; color: #7f8fa4;
} }
.input-group { .input-group {
@include border-radius (2px);
.input-group-addon { .input-group-addon {
background-color: #f7f8fa; background-color: #f7f8fa;
} }
......
...@@ -26,13 +26,13 @@ ...@@ -26,13 +26,13 @@
.select2-drop { .select2-drop {
@include box-shadow(rgba(76, 86, 103, 0.247059) 0px 0px 1px 0px, rgba(31, 37, 50, 0.317647) 0px 2px 18px 0px); @include box-shadow(rgba(76, 86, 103, 0.247059) 0px 0px 1px 0px, rgba(31, 37, 50, 0.317647) 0px 2px 18px 0px);
@include border-radius (0px); @include border-radius (0px);
padding: 16px 20px; padding: 16px;
border: none !important; border: none !important;
} }
.select2-results .select2-result-label { .select2-results .select2-result-label {
padding: 16px 20px; padding: 16px;
} }
.select2-drop{ .select2-drop{
...@@ -142,5 +142,5 @@ ...@@ -142,5 +142,5 @@
} }
.ajax-users-dropdown { .ajax-users-dropdown {
min-width: 225px !important; min-width: 250px !important;
} }
\ No newline at end of file
...@@ -18,10 +18,6 @@ ...@@ -18,10 +18,6 @@
} }
} }
.btn, .commits-compare-switch {
@include btn-light;
}
.project-edit-content { .project-edit-content {
padding: 7px; padding: 7px;
} }
...@@ -100,8 +96,7 @@ ...@@ -100,8 +96,7 @@
margin-bottom: 0px; margin-bottom: 0px;
.btn { .btn {
@include btn-project; @include btn-gray;
@include btn-default;
.count { .count {
display: inline-block; display: inline-block;
...@@ -161,7 +156,7 @@ ...@@ -161,7 +156,7 @@
.input-group-btn { .input-group-btn {
.btn { .btn {
@include btn-project; @include btn-gray;
@include btn-middle; @include btn-middle;
&:hover { &:hover {
...@@ -195,7 +190,7 @@ ...@@ -195,7 +190,7 @@
margin: 0 12px 0 12px; margin: 0 12px 0 12px;
.btn{ .btn{
@include btn-project; @include btn-gray;
@include btn-default; @include btn-default;
} }
...@@ -390,7 +385,7 @@ table.table.protected-branches-list tr.no-border { ...@@ -390,7 +385,7 @@ table.table.protected-branches-list tr.no-border {
.nav > li > a { .nav > li > a {
@include btn-default; @include btn-default;
@include btn-project; @include btn-gray;
background-color: transparent; background-color: transparent;
border: 1px solid #f7f8fa; border: 1px solid #f7f8fa;
...@@ -450,7 +445,7 @@ pre.light-well { ...@@ -450,7 +445,7 @@ pre.light-well {
.btn-remove { .btn-remove {
@include btn-middle; @include btn-middle;
@include btn-remove; @include btn-red;
float: left !important; float: left !important;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment