wip: stylesheets cleanup
@@ -45,7 +45,7 @@ class RootController extends Controller
|
|||||||
return $this->app->redirectPath('logout');
|
return $this->app->redirectPath('logout');
|
||||||
}
|
}
|
||||||
|
|
||||||
$cssPath = $this->app['root.path'] . '/www/assets/prod/';
|
$cssPath = $this->app['root.path'] . '/www/assets/prod/skins';
|
||||||
|
|
||||||
$css = [];
|
$css = [];
|
||||||
|
|
||||||
|
@@ -26,7 +26,7 @@ class eventsmanager_notify_orderdeliver extends eventsmanager_notifyAbstract
|
|||||||
*/
|
*/
|
||||||
public function icon_url()
|
public function icon_url()
|
||||||
{
|
{
|
||||||
return '/skins/prod/000000/images/disktt_history.png';
|
return '/assets/common/images/icons/disktt_history.png';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -24,7 +24,7 @@ class eventsmanager_notify_ordernotdelivered extends eventsmanager_notifyAbstrac
|
|||||||
|
|
||||||
public function icon_url()
|
public function icon_url()
|
||||||
{
|
{
|
||||||
return '/skins/prod/000000/images/disktt_history.png';
|
return '/assets/common/images/icons/disktt_history.png';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function datas(array $data, $unread)
|
public function datas(array $data, $unread)
|
||||||
|
@@ -23,22 +23,35 @@ gulp.task('build-permaview', function(){
|
|||||||
return utils.buildJsGroup(permaviewGroup, 'permaview', 'permaview/js');
|
return utils.buildJsGroup(permaviewGroup, 'permaview', 'permaview/js');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
gulp.task('copy-prod-skin-black-images', function(){
|
||||||
|
return gulp.src([
|
||||||
|
config.paths.src + 'prod/skins/000000/images/**/*'
|
||||||
|
])
|
||||||
|
.pipe(gulp.dest( config.paths.build + 'prod/skins/000000/images'));
|
||||||
|
});
|
||||||
|
|
||||||
|
gulp.task('copy-prod-skin-grey-images', function(){
|
||||||
|
return gulp.src([
|
||||||
|
config.paths.src + 'prod/skins/959595/images/**/*'
|
||||||
|
])
|
||||||
|
.pipe(gulp.dest( config.paths.build + 'prod/skins/959595/images'));
|
||||||
|
});
|
||||||
|
|
||||||
gulp.task('copy-prod-images', function(){
|
gulp.task('copy-prod-images', function(){
|
||||||
return gulp.src([config.paths.src + 'prod/images/**/*'])
|
return gulp.src([config.paths.src + 'prod/images/**/*'])
|
||||||
.pipe(gulp.dest( config.paths.build + 'prod/images'));
|
.pipe(gulp.dest( config.paths.build + 'prod/images'));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('build-prod-skin-black', function(){
|
gulp.task('build-prod-skin-black', ['copy-prod-skin-black-images'], function(){
|
||||||
return utils.buildCssGroup([
|
return utils.buildCssGroup([
|
||||||
config.paths.src + 'prod/styles/skin-000000.scss'
|
config.paths.src + 'prod/skins/000000/skin-000000.scss'
|
||||||
], 'skin-000000', 'prod/css/');
|
], 'skin-000000', 'prod/skins/000000/');
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('build-prod-skin-grey', function(){
|
gulp.task('build-prod-skin-grey', ['copy-prod-skin-grey-images'], function(){
|
||||||
return utils.buildCssGroup([
|
return utils.buildCssGroup([
|
||||||
config.paths.src + 'prod/styles/skin-959595.scss'
|
config.paths.src + 'prod/skins/959595/skin-959595.scss'
|
||||||
], 'skin-959595', 'prod/css/');
|
], 'skin-959595', 'prod/skins/959595/');
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('build-prod-css', ['build-prod-skin-black', 'build-prod-skin-grey'], function(){
|
gulp.task('build-prod-css', ['build-prod-skin-black', 'build-prod-skin-grey'], function(){
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
@import 'variables';
|
||||||
.geocompleter-menu {
|
.geocompleter-menu {
|
||||||
max-height: 180px;
|
max-height: 180px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
74
resources/www/_shared/styles/_main-menu.scss
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
@import 'variables';
|
||||||
|
|
||||||
|
#mainMenu{
|
||||||
|
height:30px;
|
||||||
|
bottom:auto;
|
||||||
|
-moz-border-radius-bottomleft:4px;
|
||||||
|
-moz-border-radius-bottomright:4px;
|
||||||
|
z-index:100;
|
||||||
|
line-height:30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu ol{
|
||||||
|
display: block;
|
||||||
|
margin:0;
|
||||||
|
padding:0;
|
||||||
|
list-style: none outside none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu li{
|
||||||
|
display: inline-block;
|
||||||
|
float:left;
|
||||||
|
line-height: 30px;
|
||||||
|
padding: 0;
|
||||||
|
position: relative;
|
||||||
|
vertical-align: top;
|
||||||
|
}
|
||||||
|
#mainMenu span.selected{
|
||||||
|
border-top:3px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu span{
|
||||||
|
display: block;
|
||||||
|
padding:0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu .title{
|
||||||
|
font-size:18px;
|
||||||
|
color:#F7F7F7;
|
||||||
|
margin:0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu a:hover span{
|
||||||
|
background-color:#FFFFFF;
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu span{
|
||||||
|
color:#b1b1b1;
|
||||||
|
font-size:12px;
|
||||||
|
font-weight:normal;
|
||||||
|
border-top:3px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu a{
|
||||||
|
text-decoration:none;
|
||||||
|
display:inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu #notification_box a {
|
||||||
|
margin-left:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu .account a{
|
||||||
|
text-decoration:underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu b{
|
||||||
|
color:#EDEDED;
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#mainMenu nobr{
|
||||||
|
padding:0 5px;
|
||||||
|
}
|
104
resources/www/_shared/styles/_notification.scss
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
@import 'variables';
|
||||||
|
|
||||||
|
#notification_trigger{
|
||||||
|
cursor:pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_trigger .counter{
|
||||||
|
border:1px solid white;
|
||||||
|
background:red;
|
||||||
|
-moz-border-radius:8px;
|
||||||
|
-webkit-border-radius:8px;
|
||||||
|
font-size:10px;
|
||||||
|
font-weight:bold;
|
||||||
|
display:inline-block;
|
||||||
|
line-height:12px;
|
||||||
|
margin:0;
|
||||||
|
padding:2px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_trigger.open a span{
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_trigger.open{
|
||||||
|
background-color:white;
|
||||||
|
border-bottom:1px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_trigger.unread{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#notification_box{
|
||||||
|
background-color:white;
|
||||||
|
border:1px solid black;
|
||||||
|
border-top:none;
|
||||||
|
position:absolute;
|
||||||
|
height:150px;
|
||||||
|
top:30px;
|
||||||
|
overflow-y:auto;
|
||||||
|
overflow-x:hidden;
|
||||||
|
z-index:668;
|
||||||
|
right:20px;
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification span.time{
|
||||||
|
color:#414141;
|
||||||
|
font-size:11px;
|
||||||
|
white-space:nowrap;
|
||||||
|
margin-left:0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification a{
|
||||||
|
color:#999999;
|
||||||
|
text-decoration:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification a:hover{
|
||||||
|
text-decoration:underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification{
|
||||||
|
padding:5px 10px;
|
||||||
|
}
|
||||||
|
#notification_box div.notification.hover{
|
||||||
|
background-color:#E1E1E1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification.unread{
|
||||||
|
background-color:#E1E1E1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification_title a{
|
||||||
|
font-size:13px;
|
||||||
|
font-weight:bold;
|
||||||
|
color:blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notification_box div.notification_title{
|
||||||
|
text-align:center;
|
||||||
|
padding:10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#notifications-dialog a{
|
||||||
|
color:#999999;
|
||||||
|
}
|
||||||
|
#notifications-dialog a:hover{
|
||||||
|
color:#D9D9D9;
|
||||||
|
text-decoration:underline
|
||||||
|
}
|
||||||
|
|
||||||
|
#notifications-dialog .time{
|
||||||
|
font-size:10px;
|
||||||
|
color:#666666;
|
||||||
|
}
|
||||||
|
#notifications-dialog .notification_title{
|
||||||
|
padding:10px 0 5px;
|
||||||
|
}
|
||||||
|
#notifications-dialog .notification_next{
|
||||||
|
text-align:center;
|
||||||
|
padding:15px 0;
|
||||||
|
}
|
2
resources/www/_shared/styles/_variables.scss
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
$fontAwesomePath: '/assets/common/font' !default; // dist path
|
||||||
|
$iconsPath: '/assets/common/images/icons/' !default;
|
74
resources/www/_shared/styles/main.scss
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
@import 'variables';
|
||||||
|
|
||||||
|
/** skin/common/main.css */
|
||||||
|
body{
|
||||||
|
margin:0;
|
||||||
|
padding:0;
|
||||||
|
font-family:Helvetica,Arial,sans-serif;
|
||||||
|
font-size:12px;
|
||||||
|
overflow:hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
img{
|
||||||
|
border:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#MODALDL{
|
||||||
|
z-index:1200;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tooltip{
|
||||||
|
color:black;
|
||||||
|
position:absolute;
|
||||||
|
z-index:32000;
|
||||||
|
overflow:hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tooltip hr{
|
||||||
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.PNB
|
||||||
|
{
|
||||||
|
position:absolute;
|
||||||
|
top:0;
|
||||||
|
left:0;
|
||||||
|
right:0;
|
||||||
|
bottom:0;
|
||||||
|
}
|
||||||
|
.PNB10
|
||||||
|
{
|
||||||
|
position:absolute;
|
||||||
|
top:10px;
|
||||||
|
left:10px;
|
||||||
|
right:10px;
|
||||||
|
bottom:10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input.checkbox{
|
||||||
|
background:transparent;
|
||||||
|
border:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ui-datepicker-div{
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tooltip .popover {
|
||||||
|
max-width: none;
|
||||||
|
width: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-dialog-titlebar {
|
||||||
|
min-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ui-dialog[aria-describedby="p4_alerts"]{
|
||||||
|
z-index:2000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@import 'geonames';
|
||||||
|
@import "notification";
|
||||||
|
@import "main-menu";
|
@@ -1,11 +1,9 @@
|
|||||||
$fontAwesomePath: "../../common/font"; // dist path
|
|
||||||
$iconsPath: '../../../assets/common/images/icons/';
|
|
||||||
@import '../../../../www/bower_components/normalize-css/normalize'; // not extension for inline import
|
@import '../../../../www/bower_components/normalize-css/normalize'; // not extension for inline import
|
||||||
@import '../../vendors/bootstrap/bootstrap';
|
@import '../../vendors/bootstrap/bootstrap';
|
||||||
|
@import '../../_shared/styles/variables';
|
||||||
// @TODO enable importation of: @import "../../../../plugins/login.less";
|
// @TODO enable importation of: @import "../../../../plugins/login.less";
|
||||||
@import 'variables';
|
@import 'variables';
|
||||||
|
|
||||||
@import 'skin';
|
@import 'skin';
|
||||||
@import '../../shared/styles/skin/geonames';
|
|
||||||
@import '../../../../www/bower_components/font-awesome/sass/font-awesome.scss';
|
@import '../../../../www/bower_components/font-awesome/sass/font-awesome.scss';
|
||||||
@import '../../../../www/bower_components/jquery-ui/themes/base/jquery.ui.autocomplete'; // not extension for inline import
|
@import '../../../../www/bower_components/jquery-ui/themes/base/jquery.ui.autocomplete'; // not extension for inline import
|
@@ -1,11 +1,9 @@
|
|||||||
$skinsPath: '../../../skins/';
|
@import '../../_shared/styles/variables';
|
||||||
$iconsPath: '../../../assets/common/images/icons/';
|
|
||||||
|
|
||||||
@import '../../vendors/jquery-treeview/jquery.treeview'; // to inline import css file, don't put extension
|
@import '../../vendors/jquery-treeview/jquery.treeview'; // to inline import css file, don't put extension
|
||||||
@import '../../../../www/bower_components/jquery-file-upload/css/jquery.fileupload-ui'; // to inline import css file, don't put extension
|
@import '../../../../www/bower_components/jquery-file-upload/css/jquery.fileupload-ui'; // to inline import css file, don't put extension
|
||||||
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
||||||
@import '../../shared/styles/skin/main';
|
@import '../../_shared/styles/main';
|
||||||
@import '../../shared/styles/skin/geonames';
|
|
||||||
|
|
||||||
/******* GLOBAL CSS for ADMIN *************************************************/
|
/******* GLOBAL CSS for ADMIN *************************************************/
|
||||||
body {
|
body {
|
||||||
|
@@ -3,12 +3,7 @@
|
|||||||
*/
|
*/
|
||||||
@import '../../vendors/bootstrap/bootstrap';
|
@import '../../vendors/bootstrap/bootstrap';
|
||||||
@import '../../vendors/bootstrap/responsive';
|
@import '../../vendors/bootstrap/responsive';
|
||||||
$fontAwesomePath: "../font"; // dist path
|
@import '../../_shared/styles/variables';
|
||||||
$iconsPath: '../../../assets/common/images/icons/';
|
|
||||||
@import '../../../../www/bower_components/font-awesome/sass/font-awesome.scss';
|
@import '../../../../www/bower_components/font-awesome/sass/font-awesome.scss';
|
||||||
|
|
||||||
// to inline import css file, don't put extension
|
@import '../../_shared/styles/main';
|
||||||
// assets/fancytree/dist/skin-win8/ui.fancytree.min.css
|
|
||||||
|
|
||||||
@import '../../shared/styles/skin/main';
|
|
||||||
@import '../../shared/styles/skin/geonames';
|
|
@@ -1,4 +1,4 @@
|
|||||||
$iconsPath: '../../../assets/common/images/icons/';
|
@import '../../_shared/styles/variables';
|
||||||
$lightboxPath: '../images/';
|
$lightboxPath: '../images/';
|
||||||
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
$iconsPath: '../../../assets/common/images/icons/';
|
@import '../../_shared/styles/variables';
|
||||||
$lightboxPath: '../images/';
|
$lightboxPath: '../images/';
|
||||||
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
@import '../../vendors/jquery-contextmenu/styles/jquery.contextmenu';
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 177 B |
Before Width: | Height: | Size: 581 B |
Before Width: | Height: | Size: 601 B |
Before Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 552 B |
Before Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 76 B After Width: | Height: | Size: 76 B |
Before Width: | Height: | Size: 81 B After Width: | Height: | Size: 81 B |
Before Width: | Height: | Size: 76 B After Width: | Height: | Size: 76 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 61 B After Width: | Height: | Size: 61 B |
Before Width: | Height: | Size: 300 B After Width: | Height: | Size: 300 B |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 184 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 305 B |
Before Width: | Height: | Size: 75 B After Width: | Height: | Size: 75 B |
Before Width: | Height: | Size: 64 B After Width: | Height: | Size: 64 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |
Before Width: | Height: | Size: 77 B After Width: | Height: | Size: 77 B |
Before Width: | Height: | Size: 60 B After Width: | Height: | Size: 60 B |
Before Width: | Height: | Size: 393 B After Width: | Height: | Size: 393 B |
Before Width: | Height: | Size: 54 B After Width: | Height: | Size: 54 B |
Before Width: | Height: | Size: 148 B After Width: | Height: | Size: 148 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 333 B After Width: | Height: | Size: 333 B |
Before Width: | Height: | Size: 98 B After Width: | Height: | Size: 98 B |
Before Width: | Height: | Size: 83 B After Width: | Height: | Size: 83 B |
Before Width: | Height: | Size: 83 B After Width: | Height: | Size: 83 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 180 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 110 B After Width: | Height: | Size: 110 B |
Before Width: | Height: | Size: 119 B After Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 57 B After Width: | Height: | Size: 57 B |
Before Width: | Height: | Size: 827 B After Width: | Height: | Size: 827 B |
Before Width: | Height: | Size: 76 B After Width: | Height: | Size: 76 B |
Before Width: | Height: | Size: 81 B After Width: | Height: | Size: 81 B |
Before Width: | Height: | Size: 76 B After Width: | Height: | Size: 76 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 581 B After Width: | Height: | Size: 581 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 601 B |
Before Width: | Height: | Size: 61 B After Width: | Height: | Size: 61 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 545 B After Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 334 B After Width: | Height: | Size: 334 B |
Before Width: | Height: | Size: 552 B After Width: | Height: | Size: 552 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 323 B After Width: | Height: | Size: 323 B |
Before Width: | Height: | Size: 574 B After Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 305 B After Width: | Height: | Size: 305 B |
Before Width: | Height: | Size: 560 B After Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 65 B After Width: | Height: | Size: 65 B |
Before Width: | Height: | Size: 64 B After Width: | Height: | Size: 64 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 338 B After Width: | Height: | Size: 338 B |