博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[SaSS] Using Object like style to create class dynamiclly
阅读量:5163 次
发布时间:2019-06-13

本文共 903 字,大约阅读时间需要 3 分钟。

$black: #000;$white: #fff;$yellow: #ffe183;$dark-red: #e70404;$dark-green: #0d8268;$cloud-blue: #dcedff;$toast-palette: (    info: (        color: $black,        background: $cloud-blue    ),    error: (        color: $white,        background: $dark-red    ),    success: (        color: $white,        background: $dark-green    ),    warning: (        color: $black,        background: $yellow    ));@mixin toast-palette {    @each $name, $palette in $toast-palette {        &--#{$name} {            background-color: map-get($palette, background);            &,            .icon,            button:not(.button--secondary) {                color: map-get($palette, color);            }        }    }}.nd-toast {    @include toast-palette();}

 

More from 

 

How to use:

.callout.callout-contextual(ng-class="'nd-toast--' + vm.type" role="alertdialog")

 

转载于:https://www.cnblogs.com/Answer1215/p/11207420.html

你可能感兴趣的文章
我回答了90%的面试题,为什么还被拒?
查看>>
Html - Table 表头固定和 tbody 设置 height 在IE不起作用的解决
查看>>
20165205 学习基础与C语言基础调查
查看>>
iOS SVN终端指令
查看>>
SpringSecurity——默认过滤器链
查看>>
LeetCode: Word Ladder II [127]
查看>>
Linux如何更新软件源
查看>>
SQL使用CASE 语句
查看>>
day8 (异常处理和网络编程)
查看>>
php中函数 vsprintf() 和 var_export()
查看>>
多线程(1)—单线程
查看>>
HTML5权威指南 16.拖放API与通知API
查看>>
NYOJ-289 苹果 又是一个典型的01背包和上题一样没啥好说的
查看>>
HDU 2262 回溯算法 递归枚举
查看>>
九度0J 1374 所有员工年龄排序
查看>>
listview初始化后仍为空
查看>>
无刷新分页
查看>>
SIFT算法
查看>>
git各种撤销操作
查看>>
每天努力一点之SQL
查看>>