Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
90345a0bad | ||
|
|
df7bedd062 | ||
|
|
60927b4c85 | ||
|
|
a4682b23a3 | ||
|
|
289c9d32e2 | ||
|
|
712f4325d5 |
@@ -17,7 +17,7 @@ If you want to use any of the CartoAssets components, after the installation jus
|
||||
It will generate a UI documentation about the components in this repository:
|
||||
- ```grunt dev```
|
||||
|
||||
If you want to check the documenation, it is generated in the ```dist``` folder.
|
||||
If you want to check the documentation, it is generated in the ```dist``` folder.
|
||||
|
||||
### How to add/update the icon font
|
||||
|
||||
@@ -43,4 +43,4 @@ Just run this command:
|
||||
|
||||
 |  |  |  | 
|
||||
--- | --- | --- | --- | --- |
|
||||
31+ ✔ | 38+ ✔ | 11+ ✔ | 31+ ✔ | 8+ ✔ |
|
||||
31+ ✔ | 38+ ✔ | 11+ ✔ | 31+ ✔ | 8+ ✔ |
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "cartoassets",
|
||||
"description": "Share frontend assets between different CARTO repositories",
|
||||
"version": "0.2.4",
|
||||
"version": "0.2.5",
|
||||
"homepage": "https://github.com/cartodb/CartoAssets",
|
||||
"author": {
|
||||
"name": "CARTO",
|
||||
|
||||
BIN
src/fonts/Montserrat-Bold.eot
Normal file
BIN
src/fonts/Montserrat-Bold.eot
Normal file
Binary file not shown.
BIN
src/fonts/Montserrat-Bold.ttf
Normal file
BIN
src/fonts/Montserrat-Bold.ttf
Normal file
Binary file not shown.
BIN
src/fonts/Montserrat-Bold.woff
Normal file
BIN
src/fonts/Montserrat-Bold.woff
Normal file
Binary file not shown.
BIN
src/fonts/Montserrat-Regular.eot
Normal file
BIN
src/fonts/Montserrat-Regular.eot
Normal file
Binary file not shown.
BIN
src/fonts/Montserrat-Regular.ttf
Executable file
BIN
src/fonts/Montserrat-Regular.ttf
Executable file
Binary file not shown.
BIN
src/fonts/Montserrat-Regular.woff
Normal file
BIN
src/fonts/Montserrat-Regular.woff
Normal file
Binary file not shown.
BIN
src/fonts/Montserrat-Semibold.eot
Normal file
BIN
src/fonts/Montserrat-Semibold.eot
Normal file
Binary file not shown.
BIN
src/fonts/Montserrat-Semibold.ttf
Executable file
BIN
src/fonts/Montserrat-Semibold.ttf
Executable file
Binary file not shown.
BIN
src/fonts/Montserrat-Semibold.woff
Normal file
BIN
src/fonts/Montserrat-Semibold.woff
Normal file
Binary file not shown.
@@ -242,7 +242,8 @@
|
||||
.CDB-NavMenu-link,
|
||||
.CDB-NavSubmenu-link {
|
||||
margin-bottom: -1px;
|
||||
color: $cAltText;
|
||||
transition: none;
|
||||
color: $cWhite;
|
||||
|
||||
&:hover {
|
||||
border-bottom: 2px solid darken($cMainLine, 8%);
|
||||
@@ -256,13 +257,13 @@
|
||||
}
|
||||
|
||||
.CDB-NavMenu-item.is-selected .CDB-NavMenu-link {
|
||||
border-bottom: 2px solid $cMainLine;
|
||||
color: $cWhite;
|
||||
border-bottom: 2px solid $cAltText;
|
||||
color: $cAltText;
|
||||
}
|
||||
|
||||
.CDB-NavSubmenu-item.is-selected .CDB-NavSubmenu-link {
|
||||
border-bottom: 2px solid $cMainLine;
|
||||
color: $cWhite;
|
||||
border-bottom: 2px solid $cAltText;
|
||||
color: $cAltText;
|
||||
}
|
||||
|
||||
.CDB-NavSubmenu-status {
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
// Fonts
|
||||
// --------------------------------------------------
|
||||
|
||||
// Open Sans
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
@@ -28,3 +29,32 @@
|
||||
url('../fonts/OpenSans-Semibold.woff') format('woff'),
|
||||
url('../fonts/OpenSans-Semibold.ttf') format('truetype');
|
||||
}
|
||||
|
||||
// Montserrat
|
||||
@font-face {
|
||||
font-family: 'Montserrat';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('../fonts/Montserrat-Regular.eot');
|
||||
src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/Montserrat-Regular.woff') format('woff'),
|
||||
url('../fonts/Montserrat-Regular.ttf') format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Montserrat';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
src: url('../fonts/Montserrat-Semibold.eot');
|
||||
src: url('../fonts/Montserrat-Semibold.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/Montserrat-Semibold.woff') format('woff'),
|
||||
url('../fonts/Montserrat-Semibold.ttf') format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Montserrat';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url('../fonts/Montserrat-Bold.eot');
|
||||
src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
|
||||
url('../fonts/Montserrat-Bold.woff') format('woff'),
|
||||
url('../fonts/Montserrat-Bold.ttf') format('truetype');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user