Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
a5bfbe0f
Commit
a5bfbe0f
authored
Aug 23, 2015
by
Mark Otto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix remaining scss lint errors
parent
6f8f4cc9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
18 deletions
+16
-18
scss/.scsslint.yml
scss/.scsslint.yml
+3
-4
scss/_custom-forms.scss
scss/_custom-forms.scss
+6
-7
scss/_dropdown.scss
scss/_dropdown.scss
+6
-6
scss/_navbar.scss
scss/_navbar.scss
+1
-1
No files found.
scss/.scsslint.yml
View file @
a5bfbe0f
...
@@ -102,6 +102,9 @@ linters:
...
@@ -102,6 +102,9 @@ linters:
"
bottom"
,
"
bottom"
,
"
left"
,
"
left"
,
"
z-index"
,
"
z-index"
,
"
-webkit-box-sizing"
,
"
-moz-box-sizing"
,
"
box-sizing"
,
"
display"
,
"
display"
,
"
float"
,
"
float"
,
"
width"
,
"
width"
,
...
@@ -110,10 +113,6 @@ linters:
...
@@ -110,10 +113,6 @@ linters:
"
height"
,
"
height"
,
"
min-height"
,
"
min-height"
,
"
max-height"
,
"
max-height"
,
"
-webkit-box-sizing"
,
"
-moz-box-sizing"
,
"
box-sizing"
,
"
-webkit-appearance"
,
"
flex"
,
"
flex"
,
"
flex-direction"
,
"
flex-direction"
,
"
flex-flow"
,
"
flex-flow"
,
...
...
scss/_custom-forms.scss
View file @
a5bfbe0f
...
@@ -126,23 +126,22 @@
...
@@ -126,23 +126,22 @@
//
//
// Replaces the browser default select with a custom one, mostly pulled from
// Replaces the browser default select with a custom one, mostly pulled from
// http://primercss.io.
// http://primercss.io.
//
// Includes IE9-specific hacks (noted by ` \9`).
.c-select
{
.c-select
{
display
:
inline-block
;
display
:
inline-block
;
max-width
:
100%
;
max-width
:
100%
;
padding
:
.375rem
1
.75rem
.375rem
.75rem
;
padding
:
.375rem
1
.75rem
.375rem
.75rem
;
padding-right
:
.75rem
\
9
;
vertical-align
:
middle
;
vertical-align
:
middle
;
background
:
#fff
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC)
no-repeat
right
.75rem
center
;
background
:
#fff
url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC)
no-repeat
right
.75rem
center
;
background-image
:
none
\
9
;
background-size
:
8px
10px
;
background-size
:
8px
10px
;
border
:
1px
solid
$input-border
;
border
:
1px
solid
$input-border
;
// Use vendor prefixes as `appearance` isn't part of the CSS spec.
// Have to include vendor prefixes as the `appearance` property isn't part of the CSS spec.
-webkit-appearance
:
none
;
-moz-appearance
:
none
;
-moz-appearance
:
none
;
-webkit-appearance
:
none
;
// IE9 hacks to hide the background-image and reduce padding
padding-right
:
.75rem
\
9
;
background-image
:
none
\
9
;
&
:focus
{
&
:focus
{
border-color
:
#51a7e8
;
border-color
:
#51a7e8
;
...
...
scss/_dropdown.scss
View file @
a5bfbe0f
...
@@ -51,20 +51,20 @@
...
@@ -51,20 +51,20 @@
}
}
// Links, buttons, and more within the dropdown menu
// Links, buttons, and more within the dropdown menu
//
// `<button>`-specific styles are denoted with `// for <button>s`
.dropdown-item
{
.dropdown-item
{
display
:
block
;
display
:
block
;
width
:
100%
;
// For `<button>`s
padding
:
3px
20px
;
padding
:
3px
20px
;
clear
:
both
;
clear
:
both
;
font-weight
:
normal
;
font-weight
:
normal
;
line-height
:
$line-height
;
line-height
:
$line-height
;
color
:
$dropdown-link-color
;
color
:
$dropdown-link-color
;
text-align
:
inherit
;
// For `<button>`s
white-space
:
nowrap
;
// prevent links from randomly breaking onto new lines
white-space
:
nowrap
;
// prevent links from randomly breaking onto new lines
background
:
none
;
// For `<button>`s
// For `<button>`s
border
:
0
;
// For `<button>`s
text-align
:
inherit
;
width
:
100%
;
background
:
none
;
border
:
0
;
@include
hover-focus
{
@include
hover-focus
{
color
:
$dropdown-link-hover-color
;
color
:
$dropdown-link-hover-color
;
...
...
scss/_navbar.scss
View file @
a5bfbe0f
...
@@ -89,8 +89,8 @@
...
@@ -89,8 +89,8 @@
width
:
1px
;
width
:
1px
;
padding-top
:
.425rem
;
padding-top
:
.425rem
;
padding-bottom
:
.425rem
;
padding-bottom
:
.425rem
;
margin-left
:
$navbar-padding-horizontal
;
margin-right
:
$navbar-padding-horizontal
;
margin-right
:
$navbar-padding-horizontal
;
margin-left
:
$navbar-padding-horizontal
;
overflow
:
hidden
;
overflow
:
hidden
;
&
:before
{
&
:before
{
...
...
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