diff options
| author | Fuwn <[email protected]> | 2020-12-14 23:21:39 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-12-14 23:21:39 -0800 |
| commit | 823344c19094680e80e2b56449a243e183db8b06 (patch) | |
| tree | 92277700547ea671331828caa258ace7aaaa46d5 /semantic/src/themes/material/modules | |
| parent | repo: angular (diff) | |
| download | me-823344c19094680e80e2b56449a243e183db8b06.tar.xz me-823344c19094680e80e2b56449a243e183db8b06.zip | |
:star:
Diffstat (limited to 'semantic/src/themes/material/modules')
4 files changed, 46 insertions, 0 deletions
diff --git a/semantic/src/themes/material/modules/dropdown.overrides b/semantic/src/themes/material/modules/dropdown.overrides new file mode 100644 index 0000000..c66958b --- /dev/null +++ b/semantic/src/themes/material/modules/dropdown.overrides @@ -0,0 +1,5 @@ +@import url(https://fonts.googleapis.com/css?family=Roboto:400,700); + +.ui.dropdown { + font-family: 'Roboto'; +} diff --git a/semantic/src/themes/material/modules/dropdown.variables b/semantic/src/themes/material/modules/dropdown.variables new file mode 100644 index 0000000..5ed6e1a --- /dev/null +++ b/semantic/src/themes/material/modules/dropdown.variables @@ -0,0 +1,20 @@ +/******************************* + Menu +*******************************/ + +@menuBorderRadius: @borderRadius; +@menuBorderColor: #DADADA; +@menuBoxShadow: 0px 2px 4px rgba(0, 0, 0, 0.2); + +@menuPadding: @relative8px 0em; +@itemVerticalPadding: 1em; +@itemHorizontalPadding: 1.5em; + +@menuHeaderFontSize: @small; +@menuHeaderFontWeight: bold; +@menuHeaderTextTransform: none; + +@selectionBorderEmWidth: 0em; +@selectionItemDivider: none; + +@labelBoxShadow: none;
\ No newline at end of file diff --git a/semantic/src/themes/material/modules/modal.overrides b/semantic/src/themes/material/modules/modal.overrides new file mode 100644 index 0000000..0eff4c1 --- /dev/null +++ b/semantic/src/themes/material/modules/modal.overrides @@ -0,0 +1,6 @@ +@import url(https://fonts.googleapis.com/css?family=Roboto); + +.ui.modal .header { + font-family: "Roboto", Arial, Sans-serif !important; + font-weight: 400 !important; +} diff --git a/semantic/src/themes/material/modules/modal.variables b/semantic/src/themes/material/modules/modal.variables new file mode 100644 index 0000000..5629729 --- /dev/null +++ b/semantic/src/themes/material/modules/modal.variables @@ -0,0 +1,15 @@ +@boxShadow: 0px 10px 18px rgba(0, 0, 0, 0.22); +@borderRadius: 0em; + + +@headerBackground: @white; +@headerVerticalPadding: 1.7142rem; +@headerHorizontalPadding: 1.7142rem; +@headerFontWeight: 400; +@headerFontFamily: 'Roboto', "Helvetica Neue", Arial, sans-serif; +@headerBorder: none; + +@contentPadding: 1rem 2rem 2rem; + +@actionBorder: none; +@actionBackground: @white;
\ No newline at end of file |