Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
404
Merge Requests
51
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
5ba43f8b372c58bd529ab17fa01e3f8d78d37053...a98598c350fd37e66635015e73588fab0d0e07de
Source
a98598c350fd37e66635015e73588fab0d0e07de
...
Target
5ba43f8b372c58bd529ab17fa01e3f8d78d37053
Compare
Commits (2)
(fix): radio spacing bug from css wildcard
· c9e066bd
Olivia Madrid
authored
1 hour ago
c9e066bd
Merge branch 'radio-spacing-2249' into 'master'
· a98598c3
Mark Harding
authored
11 minutes ago
Radio spacing bug Closes
#2249
See merge request
!663
a98598c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
20 deletions
+9
-20
src/app/modules/pro/settings/settings.component.scss
View file @
a98598c3
...
...
@@ -53,13 +53,13 @@ m-proSettings {
display
:
flex
;
flex-flow
:
row
wrap
;
&
[
class
$
=
'--label'
]
{
&
[
class
*
=
'--label'
]
{
margin
:
0
0
12px
0
;
align-items
:
center
;
flex-flow
:
row
nowrap
;
position
:
relative
;
}
&
[
class
$
=
'--validation'
]
{
&
[
class
*
=
'--validation'
]
{
margin-top
:
3px
;
min-height
:
22px
;
p
{
...
...
@@ -261,7 +261,7 @@ m-proSettings {
box-shadow
:
0
1px
4px
0
rgba
(
themed
(
$m-black
)
,
0
.1
);
}
&
[
class
$
=
'--logo'
]
{
&
[
class
*
=
'--logo'
]
{
padding
:
16px
;
>
img
{
max-width
:
100%
;
...
...
@@ -270,7 +270,7 @@ m-proSettings {
}
}
&
[
class
$
=
'--background'
]
{
&
[
class
*
=
'--background'
]
{
width
:
480px
;
height
:
270px
;
...
...
@@ -283,7 +283,7 @@ m-proSettings {
object-fit
:
cover
;
}
}
&
[
class
$
=
'Overlay'
]
{
&
[
class
*
=
'Overlay'
]
{
opacity
:
0
;
position
:
absolute
;
top
:
0
;
...
...
@@ -367,7 +367,7 @@ m-proSettings {
-ms-user-select
:
none
;
user-select
:
none
;
&
[
class
$
=
'--radio'
]
{
&
[
class
*
=
'--radio'
]
{
margin
:
0
24px
12px
0
;
padding-left
:
30px
;
}
...
...
@@ -379,7 +379,7 @@ m-proSettings {
height
:
0
;
width
:
0
;
&
:checked
~
[
class
*=
'm-proSettings__customInput'
]
{
&
[
class
$
=
'--checkbox'
]
{
&
[
class
*
=
'--checkbox'
]
{
@include
m-theme
()
{
background-color
:
themed
(
$m-blue
);
}
...
...
@@ -400,7 +400,7 @@ m-proSettings {
background-color
:
themed
(
$m-white
);
border
:
1px
solid
themed
(
$m-grey-100
);
}
&
[
class
$
=
'--checkbox'
]
{
&
[
class
*
=
'--checkbox'
]
{
border-radius
:
2px
;
@include
m-theme
()
{
background-color
:
themed
(
$m-white
);
...
...
@@ -417,7 +417,7 @@ m-proSettings {
}
}
}
&
[
class
$
=
'--radio'
]
{
&
[
class
*
=
'--radio'
]
{
border-radius
:
50%
;
@include
m-theme
()
{
background-color
:
themed
(
$m-grey-50
);
...
...
@@ -477,14 +477,3 @@ m-proSettings {
}
}
}
// @media screen and (max-width: $min-tablet) {
// m-proSettings {
// .stretchedField {
// .m-proSettings__row--label m-tooltip {
// .m-tooltip--bubble {
// right: 12px;
// }
// }
// }
// }
// }
This diff is collapsed.