Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bootstrap_barrio-3382683
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
bootstrap_barrio-3382683
Commits
031b67af
Commit
031b67af
authored
2 years ago
by
Suhaib Abu Al-Hija
Committed by
Alberto Siles
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3331821
by suhaib_hija: Fixes on bootstrap barrio component scss
parent
bf839adf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scss/components/breadcrumb.scss
+1
-1
1 addition, 1 deletion
scss/components/breadcrumb.scss
scss/components/form.scss
+3
-3
3 additions, 3 deletions
scss/components/form.scss
scss/components/user.scss
+11
-7
11 additions, 7 deletions
scss/components/user.scss
with
15 additions
and
11 deletions
scss/components/breadcrumb.scss
+
1
−
1
View file @
031b67af
...
...
@@ -4,7 +4,7 @@
*/
.breadcrumb
{
font-size
:
0
.929em
$font-size-sm
;
font-size
:
$font-size-sm
;
}
.region-breadcrumb
{
...
...
This diff is collapsed.
Click to expand it.
scss/components/form.scss
+
3
−
3
View file @
031b67af
...
...
@@ -9,9 +9,9 @@
display
:
inline-block
;
background-image
:
url(../images/required.svg)
;
background-repeat
:
no-repeat
;
background-size
:
(
$input-height
/
2
)
(
$input-height
/
2
);
width
:
(
$input-height
/
2
);
height
:
(
$input-height
/
2
);
background-size
:
calc
(
$input-height
*
0
.5
)
calc
(
$input-height
*
0
.5
);
width
:
calc
(
$input-height
*
0
.5
);
height
:
calc
(
$input-height
*
0
.5
);
margin
:
0
0
.3em
;
}
...
...
This diff is collapsed.
Click to expand it.
scss/components/user.scss
+
11
−
7
View file @
031b67af
...
...
@@ -12,25 +12,29 @@
}
.password-strength__indicator
{
background-color
:
theme-color
(
"success"
);
background-color
:
map-get
(
$
theme-color
s
,
"success"
);
-webkit-transition
:
width
0
.5s
ease-out
;
transition
:
width
0
.5s
ease-out
;
}
.password-strength__indicator.is-weak
{
background-color
:
theme-color
(
"danger"
);
background-color
:
map-get
(
$theme-colors
,
"danger"
);
}
.password-strength__indicator.is-fair
{
background-color
:
theme-color
(
"warning"
);
background-color
:
map-get
(
$theme-colors
,
"warning"
);
}
.password-strength__indicator.is-good
{
background-color
:
theme-color
(
"info"
);
background-color
:
map-get
(
$theme-colors
,
"info"
);
}
.password-strength__indicator.is-strong
{
background-color
:
theme-color
(
"success"
);
background-color
:
map-get
(
$theme-colors
,
"success"
);
}
.password-confirm
,
...
...
@@ -69,12 +73,12 @@
/* Styling for the status indicator of the passwords match test. */
.password-confirm
.ok
{
color
:
theme-color
(
"success"
);
color
:
map-get
(
$
theme-color
s
,
"success"
);
font-weight
:
bold
;
}
.password-confirm
.error
{
color
:
theme-color
(
"danger"
);
color
:
map-get
(
$
theme-color
s
,
"danger"
);
font-weight
:
bold
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment