##// END OF EJS Templates
changed the styles of default buttons, dropdowns, pagination
Liviu -
r3576:f078c04b new-ui
parent child Browse files
Show More
@@ -74,22 +74,22 b' input[type="button"] {'
74 74
75 75
76 76 .btn-default {
77 .border ( @border-thickness-buttons, @rcblue );
77 border: @border-thickness solid @grey5;
78 78 background-image: none;
79 color: @rcblue;
79 color: @grey2;
80 80
81 81 a {
82 color: @rcblue;
82 color: @grey2;
83 83 }
84 84
85 85 &:hover,
86 86 &.active {
87 color: @rcblue;
88 background-color: @grey7;
89 .border ( @border-thickness, @rcdarkblue );
87 color: @rcdarkblue;
88 background-color: @white;
89 .border ( @border-thickness, @grey4 );
90 90
91 91 a {
92 color: @rcblue;
92 color: @grey2;
93 93 }
94 94 }
95 95 &:disabled {
@@ -2107,8 +2107,9 b' h3.files_location{'
2107 2107 }
2108 2108
2109 2109 .info_box_elem {
2110 border-top: @border-thickness solid @rcblue;
2111 border-bottom: @border-thickness solid @rcblue;
2110 border-top: @border-thickness solid @grey5;
2111 border-bottom: @border-thickness solid @grey5;
2112 box-shadow: @button-shadow;
2112 2113
2113 2114 #at_rev, a {
2114 2115 padding: 0.6em 0.9em;
@@ -2116,6 +2117,7 b' h3.files_location{'
2116 2117 .box-shadow(none);
2117 2118 border: 0;
2118 2119 height: 12px;
2120 color: @grey2;
2119 2121 }
2120 2122
2121 2123 input#at_rev {
@@ -2124,17 +2126,31 b' h3.files_location{'
2124 2126 }
2125 2127
2126 2128 &.previous {
2127 border: @border-thickness solid @rcblue;
2129 border: @border-thickness solid @grey5;
2130 border-top-left-radius: @border-radius;
2131 border-bottom-left-radius: @border-radius;
2132
2133 &:hover {
2134 border-color: @grey4;
2135 }
2136
2128 2137 .disabled {
2129 color: @grey4;
2138 color: @grey5;
2130 2139 cursor: not-allowed;
2131 2140 }
2132 2141 }
2133 2142
2134 2143 &.next {
2135 border: @border-thickness solid @rcblue;
2144 border: @border-thickness solid @grey5;
2145 border-top-right-radius: @border-radius;
2146 border-bottom-right-radius: @border-radius;
2147
2148 &:hover {
2149 border-color: @grey4;
2150 }
2151
2136 2152 .disabled {
2137 color: @grey4;
2153 color: @grey5;
2138 2154 cursor: not-allowed;
2139 2155 }
2140 2156 }
@@ -92,10 +92,22 b' select.select2{height:28px;visibility:hi'
92 92 min-width: 160px;
93 93 margin: 0 @padding 0 0;
94 94 padding: 0;
95 border: @border-thickness solid @rcblue;
95 border: @border-thickness solid @grey5;
96 96 border-radius: @border-radius;
97 color: @rcblue;
97 color: @grey2;
98 98 background-color: white;
99
100 a {
101 color: @grey2;
102
103 &:hover {
104 color: @rcdarkblue;
105 }
106 }
107
108 &:hover {
109 border-color: @grey4;
110 }
99 111 }
100 112
101 113 .drop-menu-dropdown {
@@ -131,7 +131,7 b''
131 131
132 132 // BUTTONS
133 133 @button-padding: .7em;
134 @button-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
134 @button-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.07);
135 135
136 136
137 137 // DEFAULT WIDTHS
General Comments 0
You need to be logged in to leave comments. Login now