Skip to content

Commit

Permalink
Merge pull request #92 from electerious/2.1
Browse files Browse the repository at this point in the history
v2.1
  • Loading branch information
electerious committed Mar 4, 2014
2 parents ad1e0a7 + aa0e024 commit 0f53315
Show file tree
Hide file tree
Showing 82 changed files with 2,912 additions and 2,234 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ data/config.php
uploads/import/*
uploads/big/*
uploads/thumb/*
plugins/*

!uploads/import/index.html
!uploads/big/index.html
!uploads/thumb/index.html
!uploads/thumb/index.html
!plugins/check.php
1 change: 1 addition & 0 deletions assets/build/main.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions assets/build/main.js

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
9 changes: 7 additions & 2 deletions assets/css/modules/content.css → assets/css/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @copyright 2014 by Tobias Reich
*/

/* Gradient ------------------------------------------------*/
#content::before {
content: "";
position: absolute;
Expand All @@ -26,6 +27,7 @@
position: absolute;
padding: 50px 0px 33px 0px;
width: 100%;
min-height: calc(100% - 90px);
-webkit-overflow-scrolling: touch;
}

Expand Down Expand Up @@ -114,8 +116,11 @@
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0.9) 100%); /* IE10+ */
background: linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,rgba(0,0,0,0.9) 100%); /* W3C */
}
.photo .overlay {
background: rgba(0, 0, 0, .6);
.photo .overlay {
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.9) 100%); /* FF3.6+ */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.9) 100%); /* Chrome10+,Safari5.1+ */
background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.9) 100%); /* IE10+ */
background: linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 80%, rgba(0,0,0,0.9) 100%); /* W3C */
opacity: 0;
}
.photo:hover .overlay,
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions assets/css/modules/font.css → assets/css/font.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
*/
@font-face {
font-family: 'FontAwesome';
src: url('../../font/fontawesome-webfont.eot');
src: url('../../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../../font/fontawesome-webfont.woff') format('woff'), url('../../font/fontawesome-webfont.ttf') format('truetype'), url('../../font/fontawesome-webfont.svg#FontAwesome') format('svg');
src: url('../font/fontawesome-webfont.eot');
src: url('../font/fontawesome-webfont.eot?#iefix') format('eot'), url('../font/fontawesome-webfont.woff') format('woff'), url('../font/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');
font-weight: normal;
font-style: normal;
}
Expand Down
File renamed without changes.
File renamed without changes.
26 changes: 20 additions & 6 deletions assets/css/modules/infobox.css → assets/css/infobox.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@
-moz-transform: translateX(320px);
transform: translateX(320px);

-webkit-user-select: text;
-moz-user-select: text;
user-select: text;

-webkit-transition: -webkit-transform .5s cubic-bezier(.225,.5,.165,1);
-moz-transition: -moz-transform .5s cubic-bezier(.225,.5,.165,1);
transition: transform .5s cubic-bezier(.225,.5,.165,1);
Expand Down Expand Up @@ -121,6 +117,10 @@
color: #fff;
font-size: 14px;
line-height: 19px;

-webkit-user-select: text;
-moz-user-select: text;
user-select: text;
}
#infobox table tr td:first-child {
width: 110px;
Expand All @@ -131,10 +131,24 @@

/* Tags ------------------------------------------------*/
#infobox #tags {
margin: 20px 20px 15px 20px;
width: calc(100% - 40px);
margin: 16px 20px 12px 20px;
color: #fff;
display: inline-block;
}
#infobox #tags .empty {
font-size: 14px;
margin-bottom: 8px;
}

#infobox #tags .edit {
display: inline-block;
}

#infobox #tags .empty .edit {
display: inline;
}

#infobox .tag {
float: left;
padding: 4px 7px;
Expand All @@ -156,7 +170,7 @@
padding: 0px;
margin: 0px 0px -2px 0px;
color: red;
font-size: 12px;
font-size: 11px;
cursor: pointer;
overflow: hidden;
-webkit-transform: scale(0);
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion assets/css/min/main.css

This file was deleted.

11 changes: 8 additions & 3 deletions assets/css/modules/misc.css → assets/css/misc.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
html,
body {
min-height: 100%;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
body {
background-color: #222;
Expand All @@ -29,7 +26,15 @@ body.view {
top:50%;
}
* {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-transition: color .3s, opacity .3s ease-out, -webkit-transform .3s ease-out, box-shadow .3s;
-moz-transition: opacity .3s ease-out, -moz-transform .3s ease-out, box-shadow .3s;
transition: color .3s, opacity .3s ease-out, transform .3s ease-out, box-shadow .3s;
}
input {
-webkit-user-select: text !important;
-moz-user-select: text !important;
user-select: text !important;
}
13 changes: 13 additions & 0 deletions assets/css/multiselect.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* @name multiselect.css
* @author Tobias Reich
* @copyright 2014 by Tobias Reich
*/

#multiselect {
position: absolute;
background-color: rgba(0, 94, 204, .3);
border: 1px solid rgba(0, 94, 204, 1);
border-radius: 3px;
z-index: 3;
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 0f53315

Please sign in to comment.