1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-09-03 10:53:23 +02:00

Deprecated alert component

The .alert component will no longer be supported. Flavors have been updated to deal with these changes (certain flavors will keep the component for a while, until I can get around to dealing with the problems its deprecation causes). Another commit will follow with the documentation updates for removing the deprecated component.
This commit is contained in:
Angelos Chalaris
2017-05-11 00:33:21 +03:00
parent 5db203b909
commit 7b8ba434b5
16 changed files with 182 additions and 410 deletions

65
dist/mini-dark.css vendored
View File

@@ -1646,54 +1646,6 @@ mark.inline-block {
mark.inline-block {
display: inline-block;
}
@-webkit-keyframes alert-anim {
45% {
-webkit-transform: scale(1);
-webkit-transform-origin: 50% 50%;
}
50% {
-webkit-transform: scale(1.005);
-webkit-transform-origin: 50% 50%;
}
55% {
-webkit-transform: scale(1);
-webkit-transform-origin: 50% 50%;
}
}
@keyframes alert-anim {
45% {
transform: scale(1);
transform-origin: 50% 50%;
}
50% {
transform: scale(1.005);
transform-origin: 50% 50%;
}
55% {
transform: scale(1);
transform-origin: 50% 50%;
}
}
.alert {
display: block;
background: #a7ffeb;
color: #212121;
border: 1px solid #d0d0d0;
margin: 0.5rem;
padding: 0.75rem;
}
.alert.animated {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: alert-anim 6s linear infinite;
animation: alert-anim 6s linear infinite;
}
.tooltip {
position: relative;
@@ -1785,23 +1737,6 @@ mark.inline-block {
line-height: 1.375em;
padding: 0.375em;
}
.alert.urgent {
background: #fff176;
}
.alert.critical {
background: #b71c1c;
color: #d0d0d0;
}
.alert.urgent {
border: 1px solid #d1c661;
}
.alert.critical {
border: 1px solid #a71a1a;
}
/*
Definitions for progress elements and spinners.