1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 17:28:23 +03:00
ifhub.club/application/frontend/skin/synio/components/photo/css/photo.css
Denis Shakhov 1fbaa0ac46 Шаблон Synio
Профиль пользователя
2016-08-30 19:04:04 +07:00

61 lines
1.2 KiB
CSS

/**
* Фото
*
* @module ls/photo
*
* @license GNU General Public License, version 2
* @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
* @author Denis Shakhov <denis.shakhov@gmail.com>
*/
.ls-photo {
position: relative;
min-width: 100%;
min-height: 50px;
overflow: hidden;
}
/* Изображение */
.ls-photo-image {
vertical-align: top;
max-width: 100%;
}
/* Действия */
.ls-photo-actions {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 8px 0;
background: rgba( 0, 0, 0, .7 );
opacity: 0;
-webkit-transition: opacity .3s;
transition: opacity .3s;
}
.ls-photo-actions li {
padding: 3px 15px;
color: #bbb;
font-size: 11px;
cursor: pointer;
-webkit-transition: color .2s;
transition: color .2s;
}
.ls-photo-actions li:hover {
color: #eee;
}
.ls-photo:hover .ls-photo-actions {
opacity: 1;
}
/* @modifier nophoto */
.ls-photo--nophoto .ls-photo-image {
width: 100%;
}
.ls-photo--nophoto .ls-photo-actions {
opacity: 1;
}
.ls-photo--nophoto .ls-photo-actions-crop-avatar,
.ls-photo--nophoto .ls-photo-actions-remove {
display: none;
}