Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
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
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
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
5d0b1028
Unverified
Commit
5d0b1028
authored
Jun 25, 2020
by
Lyza Gardner
Committed by
GitHub
Jun 25, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2266 from hypothesis/more-atomic-consolidation
Add additional atomic mixins, variables
parents
13881cca
e4b3c275
Changes
29
Show whitespace changes
Inline
Side-by-side
Showing
29 changed files
with
88 additions
and
75 deletions
+88
-75
annotator.scss
src/styles/annotator/annotator.scss
+2
-2
bucket-bar.scss
src/styles/annotator/bucket-bar.scss
+2
-2
buttons.scss
src/styles/mixins/buttons.scss
+1
-1
forms.scss
src/styles/mixins/forms.scss
+2
-2
layout.scss
src/styles/mixins/layout.scss
+2
-1
molecules.scss
src/styles/mixins/molecules.scss
+6
-6
shadow.scss
src/styles/mixins/shadow.scss
+0
-3
utils.scss
src/styles/mixins/utils.scss
+8
-0
annotation-body.scss
src/styles/sidebar/components/annotation-body.scss
+1
-1
annotation-header.scss
src/styles/sidebar/components/annotation-header.scss
+1
-1
annotation-license.scss
src/styles/sidebar/components/annotation-license.scss
+2
-1
annotation-publish-control.scss
...styles/sidebar/components/annotation-publish-control.scss
+4
-5
annotation-quote.scss
src/styles/sidebar/components/annotation-quote.scss
+1
-1
annotation-share-control.scss
src/styles/sidebar/components/annotation-share-control.scss
+2
-2
autocomplete-list.scss
src/styles/sidebar/components/autocomplete-list.scss
+2
-1
focused-mode-header.scss
src/styles/sidebar/components/focused-mode-header.scss
+2
-2
group-list-item.scss
src/styles/sidebar/components/group-list-item.scss
+1
-0
markdown-editor.scss
src/styles/sidebar/components/markdown-editor.scss
+1
-1
menu.scss
src/styles/sidebar/components/menu.scss
+1
-1
selection-tabs.scss
src/styles/sidebar/components/selection-tabs.scss
+1
-1
tag-editor.scss
src/styles/sidebar/components/tag-editor.scss
+8
-7
tag-list.scss
src/styles/sidebar/components/tag-list.scss
+4
-3
thread-list.scss
src/styles/sidebar/components/thread-list.scss
+3
-1
thread.scss
src/styles/sidebar/components/thread.scss
+4
-4
toast-messages.scss
src/styles/sidebar/components/toast-messages.scss
+2
-2
top-bar.scss
src/styles/sidebar/components/top-bar.scss
+2
-2
tutorial.scss
src/styles/sidebar/components/tutorial.scss
+1
-1
version-info.scss
src/styles/sidebar/components/version-info.scss
+5
-5
variables.scss
src/styles/variables.scss
+17
-16
No files found.
src/styles/annotator/annotator.scss
View file @
5d0b1028
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
@use
'../variables'
as
var
;
@use
'../variables'
as
var
;
@use
'../mixins/focus'
;
@use
'../mixins/focus'
;
@use
'../mixins/reset'
;
@use
'../mixins/reset'
;
@use
'../mixins/
shadow
'
;
@use
'../mixins/
utils
'
;
// Shared components.
// Shared components.
@use
'../components/svg-icon'
;
@use
'../components/svg-icon'
;
...
@@ -82,7 +82,7 @@ $sidebar-collapse-transition-time: 150ms;
...
@@ -82,7 +82,7 @@ $sidebar-collapse-transition-time: 150ms;
@include
focus
.
outline-on-keyboard-focus
;
@include
focus
.
outline-on-keyboard-focus
;
transition
:
background-color
0
.25s
;
transition
:
background-color
0
.25s
;
@include
shadow
.
small
shadow
;
@include
utils
.
shadow
;
background
:
var
.
$white
;
background
:
var
.
$white
;
border
:
solid
1px
var
.
$grey-3
;
border
:
solid
1px
var
.
$grey-3
;
border-radius
:
4px
;
border-radius
:
4px
;
...
...
src/styles/annotator/bucket-bar.scss
View file @
5d0b1028
@use
"../mixins/reset"
;
@use
"../mixins/reset"
;
@use
"../mixins/
shadow
"
;
@use
"../mixins/
utils
"
;
@use
"../variables"
as
var
;
@use
"../variables"
as
var
;
// Bucket-bar styles are nested inside `.annotator-frame` to ensure they take
// Bucket-bar styles are nested inside `.annotator-frame` to ensure they take
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
&
.lower
,
&
.lower
,
&
.upper
{
&
.upper
{
@include
shadow
.
small
shadow
;
@include
utils
.
shadow
;
z-index
:
1
;
z-index
:
1
;
&
:before
,
&
:before
,
...
...
src/styles/mixins/buttons.scss
View file @
5d0b1028
...
@@ -38,7 +38,7 @@
...
@@ -38,7 +38,7 @@
@include
reset-native-btn-styles
;
@include
reset-native-btn-styles
;
@include
layout
.
row
(
center
,
center
);
@include
layout
.
row
(
center
,
center
);
padding
:
0
.5em
;
padding
:
0
.5em
;
border-radius
:
2px
;
border-radius
:
var
.
$border-radius
;
border
:
none
;
border
:
none
;
// Icon
// Icon
...
...
src/styles/mixins/forms.scss
View file @
5d0b1028
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
@mixin
form-input
{
@mixin
form-input
{
@include
utils
.
font--medium
;
@include
utils
.
font--medium
;
@include
utils
.
border
;
@include
utils
.
border
;
border-radius
:
2px
;
border-radius
:
var
.
$border-radius
;
padding
:
0
.5em
0
.75em
;
padding
:
0
.5em
0
.75em
;
font-weight
:
normal
;
font-weight
:
normal
;
color
:
var
.
$color-text-light
;
color
:
var
.
$color-text-light
;
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
background-color
:
var
.
$grey-mid
;
background-color
:
var
.
$grey-mid
;
height
:
35px
;
height
:
35px
;
border
:
none
;
border
:
none
;
border-radius
:
2px
;
border-radius
:
var
.
$border-radius
;
font-weight
:
bold
;
font-weight
:
bold
;
...
...
src/styles/mixins/layout.scss
View file @
5d0b1028
@use
"./responsive"
;
@use
"./responsive"
;
@use
"../variables"
as
var
;
@mixin
sidebar-content
{
@mixin
sidebar-content
{
margin-left
:
auto
;
margin-left
:
auto
;
...
@@ -74,6 +75,6 @@
...
@@ -74,6 +75,6 @@
*/
*/
@mixin
vertical-rhythm
{
@mixin
vertical-rhythm
{
&
>
*
+
*
:not
([
class
*=
'svg-icon--inline'
])
{
&
>
*
+
*
:not
([
class
*=
'svg-icon--inline'
])
{
margin-top
:
1em
;
margin-top
:
var
.
$layout-margin
;
}
}
}
}
src/styles/mixins/molecules.scss
View file @
5d0b1028
...
@@ -10,8 +10,8 @@
...
@@ -10,8 +10,8 @@
*/
*/
@mixin
card-frame
{
@mixin
card-frame
{
@include
utils
.
border
;
@include
utils
.
border
;
border-radius
:
2px
;
@include
utils
.
shadow
;
bo
x-shadow
:
0px
1px
1px
0px
rgba
(
0
,
0
,
0
,
0
.1
)
;
bo
rder-radius
:
var
.
$border-radius
;
background-color
:
var
.
$color-background
;
background-color
:
var
.
$color-background
;
}
}
...
@@ -23,11 +23,11 @@
...
@@ -23,11 +23,11 @@
@mixin
card
{
@mixin
card
{
@include
card-frame
;
@include
card-frame
;
@include
layout
.
vertical-rhythm
;
@include
layout
.
vertical-rhythm
;
padding
:
1em
;
padding
:
var
.
$layout-margin
;
&
:hover
,
&
:hover
,
&
.is-focused
{
&
.is-focused
{
box-shadow
:
0px
2px
3px
0px
rgba
(
0
,
0
,
0
,
0
.15
)
;
@include
utils
.
active-shadow
;
}
}
&
--theme-clean
{
&
--theme-clean
{
...
@@ -102,11 +102,11 @@
...
@@ -102,11 +102,11 @@
&
__header
{
&
__header
{
@include
layout
.
row
(
$align
:
center
);
@include
layout
.
row
(
$align
:
center
);
@include
utils
.
border-bottom
;
@include
utils
.
border-bottom
;
padding-bottom
:
1em
;
padding-bottom
:
var
.
$layout-margin
;
}
}
&
__header-icon
{
&
__header-icon
{
margin-right
:
0
.5em
;
margin-right
:
var
.
$layout-margin--small
;
}
}
&
__title
{
&
__title
{
...
...
src/styles/mixins/shadow.scss
deleted
100644 → 0
View file @
13881cca
@mixin
smallshadow
(
$a
:
0
,
$b
:
1px
,
$c
:
0
.1
)
{
box-shadow
:
$a
$b
1px
hsla
(
0
,
0%
,
0%
,
$c
);
}
src/styles/mixins/utils.scss
View file @
5d0b1028
...
@@ -73,3 +73,11 @@
...
@@ -73,3 +73,11 @@
font-size
:
var
.
$font-size--large
;
font-size
:
var
.
$font-size--large
;
font-weight
:
500
;
font-weight
:
500
;
}
}
@mixin
shadow
{
box-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0
.1
);
}
@mixin
active-shadow
{
box-shadow
:
0px
2px
3px
0px
rgba
(
0
,
0
,
0
,
0
.15
);
}
src/styles/sidebar/components/annotation-body.scss
View file @
5d0b1028
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
.annotation-body__collapse-toggle
{
.annotation-body__collapse-toggle
{
@include
layout
.
row
(
right
);
@include
layout
.
row
(
right
);
margin
:
0
.5em
0
;
margin
:
var
.
$layout-margin--small
0
;
.annotation-body__collapse-toggle-button
{
.annotation-body__collapse-toggle-button
{
@include
buttons
.
button--labeled
;
@include
buttons
.
button--labeled
;
...
...
src/styles/sidebar/components/annotation-header.scss
View file @
5d0b1028
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
&
__reply-toggle
{
&
__reply-toggle
{
@include
buttons
.
button--link
;
@include
buttons
.
button--link
;
padding
:
0
0
.5em
;
padding
:
0
var
.
$layout-margin--small
;
}
}
// Timestamps are right aligned in a flex row
// Timestamps are right aligned in a flex row
...
...
src/styles/sidebar/components/annotation-license.scss
View file @
5d0b1028
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
.annotation-license
{
.annotation-license
{
@include
utils
.
font--small
;
@include
utils
.
font--small
;
@include
utils
.
border-top
;
@include
utils
.
border-top
;
padding-top
:
0
.5em
;
padding-top
:
var
.
$layout-margin--small
;
&
__link
{
&
__link
{
@include
layout
.
row
;
@include
layout
.
row
;
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
}
}
&
__details
{
&
__details
{
// TODO: Horizontal rhythm
margin-left
:
0
.25em
;
margin-left
:
0
.25em
;
}
}
}
}
src/styles/sidebar/components/annotation-publish-control.scss
View file @
5d0b1028
...
@@ -15,7 +15,6 @@
...
@@ -15,7 +15,6 @@
$hover-background-color
:
var
.
$grey-6
;
$hover-background-color
:
var
.
$grey-6
;
$h-padding
:
9px
;
$h-padding
:
9px
;
$height
:
35px
;
$height
:
35px
;
$border-radius
:
2px
;
$arrow-indicator-width
:
26px
;
$arrow-indicator-width
:
26px
;
height
:
$height
;
height
:
$height
;
...
@@ -35,8 +34,8 @@
...
@@ -35,8 +34,8 @@
&
-cancel
{
&
-cancel
{
@include
buttons
.
button--labeled
;
@include
buttons
.
button--labeled
;
padding-right
:
0
.5em
;
padding-right
:
var
.
$layout-margin--small
;
padding-left
:
0
.5em
;
padding-left
:
var
.
$layout-margin--small
;
&
__icon
{
&
__icon
{
margin
:
0
;
margin
:
0
;
...
@@ -67,8 +66,8 @@
...
@@ -67,8 +66,8 @@
border
:
none
;
border
:
none
;
background-color
:
var
.
$grey-mid
;
background-color
:
var
.
$grey-mid
;
border-top-right-radius
:
$border-radius
;
border-top-right-radius
:
var
.
$border-radius
;
border-bottom-right-radius
:
$border-radius
;
border-bottom-right-radius
:
var
.
$border-radius
;
&
:hover
,
&
:hover
,
button
[
aria-expanded
=
'true'
]
&
{
button
[
aria-expanded
=
'true'
]
&
{
...
...
src/styles/sidebar/components/annotation-quote.scss
View file @
5d0b1028
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
border-left
:
3px
solid
var
.
$color-border
;
border-left
:
3px
solid
var
.
$color-border
;
color
:
var
.
$color-text-light
;
color
:
var
.
$color-text-light
;
font-style
:
italic
;
font-style
:
italic
;
padding
:
0
1em
;
padding
:
0
var
.
$layout-margin
;
// Prevent long URLs etc. in quote causing overflow
// Prevent long URLs etc. in quote causing overflow
overflow-wrap
:
break-word
;
overflow-wrap
:
break-word
;
...
...
src/styles/sidebar/components/annotation-share-control.scss
View file @
5d0b1028
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
&
__icon-button
{
&
__icon-button
{
@include
buttons
.
button--input
;
@include
buttons
.
button--input
;
padding
:
0
.25em
0
.5em
;
padding
:
var
.
$layout-margin--xsmall
var
.
$layout-margin--small
;
}
}
&
__form-input
{
&
__form-input
{
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
&
__permissions
{
&
__permissions
{
@include
utils
.
font--small
;
@include
utils
.
font--small
;
margin
:
0
.5em
0
;
margin
:
var
.
$layout-margin--small
0
;
}
}
&
__arrow
{
&
__arrow
{
...
...
src/styles/sidebar/components/autocomplete-list.scss
View file @
5d0b1028
@use
"../../variables"
as
var
;
@use
"../../variables"
as
var
;
@use
"../../mixins/utils"
;
.autocomplete-list
{
.autocomplete-list
{
position
:
relative
;
position
:
relative
;
...
@@ -8,6 +9,7 @@
...
@@ -8,6 +9,7 @@
}
}
.autocomplete-list__items
{
.autocomplete-list__items
{
@include
utils
.
shadow
;
@supports
(
clip-path
:
polygon
(
0
0
,
100
%
0
,
0
%
100
%
,
0
%
100
%
))
{
@supports
(
clip-path
:
polygon
(
0
0
,
100
%
0
,
0
%
100
%
,
0
%
100
%
))
{
&
:before
{
&
:before
{
/**
/**
...
@@ -34,7 +36,6 @@
...
@@ -34,7 +36,6 @@
min-width
:
10em
;
min-width
:
10em
;
background-color
:
var
.
$white
;
background-color
:
var
.
$white
;
border
:
1px
solid
var
.
$grey-3
;
border
:
1px
solid
var
.
$grey-3
;
box-shadow
:
var
.
$popup-menu-shadow
;
z-index
:
10
;
z-index
:
10
;
@media
(
pointer
:
coarse
)
{
@media
(
pointer
:
coarse
)
{
...
...
src/styles/sidebar/components/focused-mode-header.scss
View file @
5d0b1028
...
@@ -17,8 +17,8 @@
...
@@ -17,8 +17,8 @@
font-weight
:
300
;
font-weight
:
300
;
// TODO cleanup
// TODO cleanup
padding
:
0
.5em
;
padding
:
var
.
$layout-margin--small
;
margin-bottom
:
1em
;
margin-bottom
:
var
.
$layout-margin
;
&
__btn
{
&
__btn
{
// TODO use Button component
// TODO use Button component
...
...
src/styles/sidebar/components/group-list-item.scss
View file @
5d0b1028
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
.group-list-item__footer
{
.group-list-item__footer
{
background-color
:
var
.
$grey-1
;
background-color
:
var
.
$grey-1
;
margin
:
0
;
margin
:
0
;
// TODO consolidate
padding-top
:
15px
;
padding-top
:
15px
;
padding
:
10px
;
padding
:
10px
;
...
...
src/styles/sidebar/components/markdown-editor.scss
View file @
5d0b1028
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
border-bottom
:
none
;
border-bottom
:
none
;
background-color
:
white
;
background-color
:
white
;
border-radius
:
0
.15em
0
.15em
0
0
;
border-radius
:
var
.
$border-radius
var
.
$border-radius
0
0
;
width
:
100%
;
width
:
100%
;
margin-bottom
:
-0
.1em
;
margin-bottom
:
-0
.1em
;
padding
:
5px
5px
;
padding
:
5px
5px
;
...
...
src/styles/sidebar/components/menu.scss
View file @
5d0b1028
...
@@ -73,8 +73,8 @@
...
@@ -73,8 +73,8 @@
.menu__content
{
.menu__content
{
@include
utils
.
font--large
;
@include
utils
.
font--large
;
@include
utils
.
border
;
@include
utils
.
border
;
@include
utils
.
shadow
;
background-color
:
white
;
background-color
:
white
;
box-shadow
:
var
.
$popup-menu-shadow
;
position
:
absolute
;
position
:
absolute
;
top
:
calc
(
100%
+
5px
);
top
:
calc
(
100%
+
5px
);
z-index
:
1
;
z-index
:
1
;
...
...
src/styles/sidebar/components/selection-tabs.scss
View file @
5d0b1028
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
.selection-tabs__icon
{
.selection-tabs__icon
{
color
:
var
.
$grey-mid
;
color
:
var
.
$grey-mid
;
margin
:
0
0
.25em
;
margin
:
0
var
.
$layout-margin--xsmall
;
}
}
.selection-tabs--theme-clean
{
.selection-tabs--theme-clean
{
...
...
src/styles/sidebar/components/tag-editor.scss
View file @
5d0b1028
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
@use
"../../variables"
as
var
;
@use
"../../variables"
as
var
;
.tag-editor
{
.tag-editor
{
margin
:
0
.5em
0
;
margin
:
var
.
$layout-margin--small
0
;
&
__input
{
&
__input
{
@include
forms
.
form-input
;
@include
forms
.
form-input
;
...
@@ -15,21 +15,22 @@
...
@@ -15,21 +15,22 @@
&
__tags
{
&
__tags
{
@include
layout
.
row
;
@include
layout
.
row
;
flex-wrap
:
wrap
;
flex-wrap
:
wrap
;
margin
:
0
.5em
0
;
margin
:
var
.
$layout-margin--small
0
;
}
}
&
__item
{
&
__item
{
@include
layout
.
row
;
@include
layout
.
row
;
margin
:
0
.25em
0
.5em
0
.25em
0
;
margin
:
var
.
$layout-margin--xsmall
var
.
$layout-margin--small
var
.
$layout-margin--small
0
;
}
}
&
__edit
{
&
__edit
{
@include
utils
.
border
;
@include
utils
.
border
;
color
:
var
.
$color-text
;
color
:
var
.
$color-text
;
background
:
var
.
$grey-1
;
background
:
var
.
$grey-1
;
border-radius
:
2px
0
0
2px
;
border-radius
:
var
.
$border-radius
0
0
var
.
$border-radius
;
border-right-width
:
0
;
border-right-width
:
0
;
padding
:
2px
0
.5em
;
padding
:
2px
var
.
$layout-margin--small
;
}
}
&
__delete
{
&
__delete
{
...
@@ -37,8 +38,8 @@
...
@@ -37,8 +38,8 @@
@include
utils
.
border
;
@include
utils
.
border
;
color
:
var
.
$grey-mid
;
color
:
var
.
$grey-mid
;
background-color
:
var
.
$grey-1
;
background-color
:
var
.
$grey-1
;
padding
:
0
0
.5em
;
padding
:
0
var
.
$layout-margin--small
;
border-radius
:
0
2px
2px
0
;
border-radius
:
0
var
.
$border-radius
var
.
$border-radius
0
;
&
:hover
{
&
:hover
{
background-color
:
var
.
$grey-2
;
background-color
:
var
.
$grey-2
;
...
...
src/styles/sidebar/components/tag-list.scss
View file @
5d0b1028
...
@@ -9,10 +9,11 @@
...
@@ -9,10 +9,11 @@
&
__item
{
&
__item
{
@include
utils
.
border
;
@include
utils
.
border
;
margin
:
0
.25em
0
.5em
0
.25em
0
;
margin
:
var
.
$layout-margin--xsmall
var
.
$layout-margin--small
padding
:
2px
0
.5em
;
var
.
$layout-margin--xsmall
0
;
padding
:
2px
var
.
$layout-margin--small
;
background
:
var
.
$grey-0
;
background
:
var
.
$grey-0
;
border-radius
:
2px
;
border-radius
:
var
.
$border-radius
;
}
}
&
__link
,
&
__link
,
...
...
src/styles/sidebar/components/thread-list.scss
View file @
5d0b1028
@use
"../../variables"
as
var
;
.thread-list__card
{
.thread-list__card
{
margin-bottom
:
1em
;
margin-bottom
:
var
.
$layout-margin
;
}
}
src/styles/sidebar/components/thread.scss
View file @
5d0b1028
...
@@ -6,19 +6,19 @@
...
@@ -6,19 +6,19 @@
@include
layout
.
row
;
@include
layout
.
row
;
&
--reply
{
&
--reply
{
margin-top
:
0
.5em
;
margin-top
:
var
.
$layout-margin--small
;
}
}
&
--reply
&
__content
{
&
--reply
&
__content
{
margin-left
:
1em
;
margin-left
:
var
.
$layout-margin
;
}
}
&
__children
{
&
__children
{
margin-left
:
-1
em
;
margin-left
:
-1
*
var
.
$layout-margin
;
}
}
&
__unavailable-message
{
&
__unavailable-message
{
margin
:
0
1em
;
margin
:
0
var
.
$layout-margin
;
}
}
// Left "channel" of thread
// Left "channel" of thread
...
...
src/styles/sidebar/components/toast-messages.scss
View file @
5d0b1028
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
z-index
:
1
;
z-index
:
1
;
left
:
0
;
left
:
0
;
width
:
100%
;
width
:
100%
;
padding
:
0
0
.5em
;
padding
:
0
var
.
$layout-margin--small
;
@include
responsive
.
tablet-and-up
{
@include
responsive
.
tablet-and-up
{
// When displaying in a wider viewport (desktop/tablet outside of sidebar)
// When displaying in a wider viewport (desktop/tablet outside of sidebar)
...
@@ -78,7 +78,7 @@
...
@@ -78,7 +78,7 @@
}
}
&
__message
{
&
__message
{
padding
:
1em
;
padding
:
var
.
$layout-margin
;
width
:
100%
;
width
:
100%
;
}
}
...
...
src/styles/sidebar/components/top-bar.scss
View file @
5d0b1028
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
}
}
&
__menu-label
{
&
__menu-label
{
padding
:
0
.25em
;
padding
:
var
.
$layout-margin--xsmall
;
}
}
}
}
...
@@ -63,7 +63,7 @@
...
@@ -63,7 +63,7 @@
.top-bar__login-button
{
.top-bar__login-button
{
@include
buttons
.
button
;
@include
buttons
.
button
;
@include
utils
.
font--large
;
@include
utils
.
font--large
;
padding
:
0
0
.25em
;
padding
:
0
var
.
$layout-margin--xsmall
;
color
:
var
.
$color-brand
;
color
:
var
.
$color-brand
;
&
:hover
{
&
:hover
{
...
...
src/styles/sidebar/components/tutorial.scss
View file @
5d0b1028
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
}
}
&
__item
{
&
__item
{
margin
:
0
.5em
0
;
margin
:
var
.
$layout-margin--small
0
;
}
}
&
__icon
{
&
__icon
{
...
...
src/styles/sidebar/components/version-info.scss
View file @
5d0b1028
...
@@ -2,13 +2,13 @@
...
@@ -2,13 +2,13 @@
@use
"../../mixins/layout"
;
@use
"../../mixins/layout"
;
.version-info
{
.version-info
{
margin-top
:
0
.5em
;
margin-top
:
var
.
$layout-margin--small
;
&
__key
{
&
__key
{
float
:
left
;
float
:
left
;
width
:
8em
;
width
:
8em
;
margin-bottom
:
0
.5em
;
margin-bottom
:
var
.
$layout-margin--small
;
padding-right
:
1em
;
padding-right
:
var
.
$layout-margin
;
line-height
:
1
.25em
;
line-height
:
1
.25em
;
text-align
:
right
;
text-align
:
right
;
font-weight
:
500
;
font-weight
:
500
;
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
}
}
&
__value
{
&
__value
{
margin-bottom
:
0
.5em
;
margin-bottom
:
var
.
$layout-margin--small
;
margin-left
:
8em
;
margin-left
:
8em
;
overflow-wrap
:
break-word
;
// Keep really long userids from overflowing
overflow-wrap
:
break-word
;
// Keep really long userids from overflowing
color
:
var
.
$color-text-light
;
color
:
var
.
$color-text-light
;
...
@@ -24,6 +24,6 @@
...
@@ -24,6 +24,6 @@
&
__actions
{
&
__actions
{
@include
layout
.
row
(
center
);
@include
layout
.
row
(
center
);
padding-bottom
:
0
.5em
;
padding-bottom
:
var
.
$layout-margin--small
;
}
}
}
}
src/styles/variables.scss
View file @
5d0b1028
...
@@ -76,25 +76,17 @@ $font-size--medium: 13px;
...
@@ -76,25 +76,17 @@ $font-size--medium: 13px;
$font-size--large
:
14px
;
$font-size--large
:
14px
;
$line-height
:
1
.4
;
$line-height
:
1
.4
;
// Transitional Typography (Temporary)
// -----------------------------------
$annotator-base-font-size
:
14px
;
$annotator-base-line-height
:
20px
;
$annotator-adder-font-size
:
12px
;
$annotator-adder-line-height
:
1em
;
$annotator-bucket-bar-font-size
:
10px
;
$annotator-bucket-bar-line-height
:
14px
;
// Minimum font size for <input> fields on iOS. If the font size is smaller than
// Minimum font size for <input> fields on iOS. If the font size is smaller than
// this, iOS will zoom into the field when focused.
// this, iOS will zoom into the field when focused.
$touch-input-font-size
:
16px
;
$touch-input-font-size
:
16px
;
// Layout margins
// Layout margins
// -------------------------
// -------------------------
$layout-h-margin
:
15px
;
$layout-h-margin
:
15px
;
// Legacy
$layout-margin
:
1em
;
$layout-margin--medium
:
$layout-h-margin
;
$layout-margin--small
:
$layout-h-margin
/
2
;
$layout-margin--xsmall
:
$layout-h-margin
/
4
;
// Minimum recommended size for tap targets on mobile.
// Minimum recommended size for tap targets on mobile.
// This value originated from Apple's Human Interface Guidelines.
// This value originated from Apple's Human Interface Guidelines.
...
@@ -108,7 +100,7 @@ $zindex-tooltip: 20;
...
@@ -108,7 +100,7 @@ $zindex-tooltip: 20;
// -------------------------
// -------------------------
$bucket-bar-width
:
22px
;
$bucket-bar-width
:
22px
;
$top-bar-height
:
40px
;
$top-bar-height
:
40px
;
$
popup-menu-shadow
:
0
1px
1px
rgba
(
0
,
0
,
0
,
0
.1
)
;
$
border-radius
:
2px
;
$color-border
:
$grey-3
;
$color-border
:
$grey-3
;
$border-width
:
1px
;
$border-width
:
1px
;
...
@@ -118,5 +110,14 @@ $icon-size--small: 12px;
...
@@ -118,5 +110,14 @@ $icon-size--small: 12px;
$icon-size--medium
:
16px
;
$icon-size--medium
:
16px
;
$icon-size--large
:
24px
;
$icon-size--large
:
24px
;
// Mixins
// Transitional Typography (Temporary)
// ------
// -----------------------------------
$annotator-base-font-size
:
14px
;
$annotator-base-line-height
:
20px
;
$annotator-adder-font-size
:
12px
;
$annotator-adder-line-height
:
1em
;
$annotator-bucket-bar-font-size
:
10px
;
$annotator-bucket-bar-line-height
:
14px
;
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