demarches-normaliennes/app/assets/stylesheets/new_design/icons.scss

113 lines
2.1 KiB
SCSS
Raw Normal View History

2017-10-16 18:29:40 +02:00
.icon {
display: inline-block;
2017-07-27 16:16:14 +02:00
width: 24px;
height: 24px;
background-size: 24px 24px;
vertical-align: bottom;
&.follow {
background-image: image-url("icons/follow-folder.svg");
}
&.unfollow {
background-image: image-url("icons/unfollow-folder.svg");
}
&.archive {
background-image: image-url("icons/archive.svg");
}
&.unarchive {
background-image: image-url("icons/unarchive.svg");
}
2017-07-27 16:16:14 +02:00
&.folder {
background-image: image-url("icons/folder.svg");
}
&.accept {
background-image: image-url("icons/accept.svg");
}
2017-11-30 17:35:12 +01:00
&.refuse {
background-image: image-url("icons/refuse.svg");
}
&.without-continuation {
background-image: image-url("icons/without-continuation.svg");
}
&.edit {
background-image: image-url("icons/edit-folder-blue.svg");
}
&.in-progress {
background-image: image-url("icons/in-progress-blue.svg");
}
&.bubble {
background-image: image-url("icons/bubble.svg");
}
&.attachment {
background-image: image-url("icons/attachment.svg");
}
2017-09-19 17:43:07 +02:00
&.download {
background-image: image-url("icons/download-white.svg");
}
2017-09-19 17:43:07 +02:00
&.lock {
background-image: image-url("icons/lock.svg");
}
&.printer {
background-image: image-url("icons/printer.svg");
}
2018-07-09 12:54:58 +02:00
&.account {
background-image: image-url("icons/account-circle.svg");
}
&.person {
background-image: image-url("icons/blue-person.svg");
}
&.super-admin {
background-image: image-url("icons/super-admin.svg");
}
&.mail {
background-image: image-url("icons/mail.svg");
}
&.search {
background-image: image-url("icons/search-blue.svg");
}
&.sign-out {
background-image: image-url("icons/sign-out.svg");
}
2018-07-11 17:10:56 +02:00
&.info {
background-image: image-url("icons/info-blue.svg");
object-fit: contain;
}
2018-08-08 17:37:41 +02:00
&.smile {
background-image: image-url("icons/smile-regular.svg");
}
&.frown {
background-image: image-url("icons/frown-regular.svg");
}
&.meh {
background-image: image-url("icons/meh-regular.svg");
}
&.delete {
background-image: image-url("icons/trash.svg");
}
}