BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
42b277ec
Commit
42b277ec
authored
Feb 19, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make select2 design consistent
parent
ea4d2741
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
57 additions
and
29 deletions
+57
-29
buttons.scss
app/assets/stylesheets/framework/buttons.scss
+7
-0
filters.scss
app/assets/stylesheets/framework/filters.scss
+1
-1
selects.scss
app/assets/stylesheets/framework/selects.scss
+46
-26
variables.scss
app/assets/stylesheets/framework/variables.scss
+1
-0
projects.scss
app/assets/stylesheets/pages/projects.scss
+2
-2
No files found.
app/assets/stylesheets/framework/buttons.scss
View file @
42b277ec
...
...
@@ -68,6 +68,8 @@
@include
btn-default
;
@include
btn-white
;
color
:
$gl-text-color
;
&
.btn-small
,
&
.btn-sm
{
padding
:
4px
10px
;
...
...
@@ -130,6 +132,11 @@
&
.disabled
{
pointer-events
:
auto
!
important
;
}
.caret
{
margin-left
:
5px
;
color
:
$gray-darkest
;
}
}
.btn-block
{
...
...
app/assets/stylesheets/framework/filters.scss
View file @
42b277ec
...
...
@@ -25,6 +25,6 @@
.issues-filters
,
.issues_bulk_update
{
.select2-container
.select2-choice
{
color
:
#444
!
important
;
//
color: #444 !important;
}
}
app/assets/stylesheets/framework/selects.scss
View file @
42b277ec
...
...
@@ -2,38 +2,41 @@
.select2-container
,
.select2-container.select2-drop-above
{
.select2-choice
{
background
:
#FFF
;
border-color
:
#DDD
;
height
:
3
6
px
;
padding
:
6px
$gl
-padding
;
border-color
:
$input-border
;
height
:
3
5
px
;
padding
:
$gl-vert-padding
$gl-btn
-padding
;
font-size
:
$gl-font-size
;
line-height
:
1
.42857143
;
@include
border-radius
(
2px
);
@include
border-radius
(
$input-border-radius
);
.select2-arrow
{
background
:
#FFF
;
border-left
:
none
;
padding-top
:
5px
;
width
:
auto
;
background-image
:
none
;
background-color
:
transparent
;
border
:
none
;
top
:
calc
(
50%
-
12px
);
right
:
8px
;
b
{
@extend
.caret
;
color
:
$gray-darkest
;
}
}
.select2-chosen
{
color
:
$gl-text-color
;
margin-right
:
15px
;
}
&
.select2-default
{
.select2-chosen
{
color
:
#999
;
}
&
:hover
{
background-color
:
$gray-dark
;
border-color
:
$border-white-normal
;
color
:
#313236
;
}
}
}
.select2-container
.select2-choice
,
.select2-container.select2-drop-above
.select2-choice
{
color
:
#7f8fa4
;
border
:
1px
solid
#e7e9ed
;
}
.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
border-radius
(
0px
);
...
...
@@ -61,9 +64,8 @@
.select2-container-multi
{
.select2-choices
{
@include
border-radius
(
2px
);
@include
border-radius
(
$input-border-radius
);
border-color
:
$input-border
;
background
:
white
;
padding-left
:
$gl-padding
/
2
;
.select2-search-field
input
{
...
...
@@ -76,7 +78,6 @@
.select2-search-choice
{
margin
:
8px
0
0
8px
;
background
:
white
;
box-shadow
:
none
;
border-color
:
$input-border
;
color
:
$gl-text-color
;
...
...
@@ -93,6 +94,22 @@
}
}
.select2-container-active
{
.select2-choice
,
.select2-choices
{
@include
box-shadow
(
none
);
}
}
.select2-dropdown-open
{
.select2-choice
,
.select2-choices
{
outline
:
0
;
background-image
:
none
;
border-color
:
#d6dae2
;
background-color
:
$white-dark
;
@include
box-shadow
(
inset
0
0
4px
rgba
(
0
,
0
,
0
,
0
.12
));
}
}
.select2-drop-active
{
border
:
1px
solid
#BBB
!
important
;
margin-top
:
4px
;
...
...
@@ -102,11 +119,6 @@
margin-bottom
:
8px
;
}
.select2-search
input
{
background
:
#fafafa
;
border-color
:
#DDD
;
}
.select2-results
{
max-height
:
350px
;
.select2-highlighted
{
...
...
@@ -115,6 +127,14 @@
}
}
.select2-search
input
{
background
:
#fff
image-url
(
'select2.png'
)
no-repeat
99%
-22px
;
}
.select2-search
input
.select2-active
{
background
:
#fff
image-url
(
'select2-spinner.gif'
)
no-repeat
99%
;
}
.select2-container
{
width
:
100%
!
important
;
}
...
...
app/assets/stylesheets/framework/variables.scss
View file @
42b277ec
...
...
@@ -31,6 +31,7 @@ $gl-padding-top:10px;
$gl-avatar-size
:
40px
;
$secondary-text
:
#7f8fa4
;
$error-exclamation-point
:
#E62958
;
$input-border-radius
:
3px
;
/*
* Color schema
...
...
app/assets/stylesheets/pages/projects.scss
View file @
42b277ec
...
...
@@ -191,10 +191,10 @@
.dropdown-menu
{
@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
(
$input-border-radius
);
border
:
none
;
padding
:
1
6
px
0
;
padding
:
1
0
px
0
;
font-size
:
14px
;
font-weight
:
100
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment