Remove unused semi-transparent colors (#45)

This commit is contained in:
Patricio Beltran 2020-11-19 16:33:35 -08:00 коммит произвёл GitHub
Родитель cbfd614f4a
Коммит 5baf531ab8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 11 добавлений и 28 удалений

Просмотреть файл

@ -1,5 +1,9 @@
# CHANGELOG
## v8.1.4
### Changed
- Remove unused semi-transparent colors.
## v8.1.3
### Changed
- Update `focus-visible` outline color from `foreground-default` to `foreground-inactive`

2
package-lock.json сгенерированный
Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "@microsoft/azure-iot-ux-fluent-css",
"version": "8.1.3",
"version": "8.1.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "@microsoft/azure-iot-ux-fluent-css",
"description": "Azure IoT common styles library for CSS, Colors and Themes",
"version": "8.1.3",
"version": "8.1.4",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",

Просмотреть файл

@ -1,26 +1,5 @@
/**
* Common Azure IoT Colors
*/
/**
* These are the colors that are always constant, no matter what the theme is.
*/
:root {
/* Semi-transparent Colors */
--color-dark-transparent-primary: rgba(0, 0, 0, 0.8);
--color-dark-transparent-half: rgba(0, 0, 0, 0.5);
--color-dark-transparent-third: rgba(0, 0, 0, 0.3);
--color-dark-transparent-tenth: rgba(0, 0, 0, 0.1);
--color-light-transparent-primary: rgba(255, 255, 255, 0.8);
--color-light-transparent-half: rgba(255, 255, 255, 0.5);
--color-light-transparent-third: rgba(255, 255, 255, 0.3);
--color-light-transparent-tenth: rgba(255, 255, 255, 0.1);
}
/**
* Import palettes for different supported themes
*/
@import "./themes/color.light";
@import "./themes/color.dark";
/**
* Import palettes for different supported themes
*/
@import "./themes/color.light";
@import "./themes/color.dark";