Skip to content

Commit

Permalink
Changed default icons, and fixed footer.
Browse files Browse the repository at this point in the history
Changed the default style so the default icons come from font-awesome.  Also fixed the footer so when you resize the window, the footer doesn't flow behind the tiles.
  • Loading branch information
jalbr74 committed Dec 16, 2015
1 parent 45517a8 commit 09dda7f
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@
/src/main/webapp/WEB-INF/LocalDB
/bin/
/src/main/webapp/WEB-INF/applicationPath.lock
/src/main/webapp/public/resources/themes/mdefault
Binary file removed src/main/webapp/public/resources/admin_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/guest_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/mobile_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/password_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/profile_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/search_50.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/search_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/security_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/shortcut_50b.png
Binary file not shown.
45 changes: 25 additions & 20 deletions src/main/webapp/public/resources/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,10 @@ input[type=password]::-ms-reveal{display: none;}
box-shadow: none;
}

#centerbody.tile-centerbody > a {
display: inline-block;
}

.tile {
position: relative;
float: left;
Expand All @@ -291,48 +295,49 @@ input[type=password]::-ms-reveal{display: none;}

.tile-image {
background: transparent none no-repeat scroll center center;
font: 40px FontAwesome;
height: 50px;
margin-bottom: 5px;
}

.tile-image.password-image {
background-image: url("password_50b.png");
.tile-image.password-image:before {
content: "\f084";
}

.tile-image.search-image {
background-image: url("search_50b.png");
.tile-image.search-image:before {
content: "\f002";
}

.tile-image.security-image {
background-image: url("security_50b.png");
.tile-image.security-image:before {
content: "\f0cb";
}

.tile-image.mobile-image {
background-image: url("mobile_50b.png");
.tile-image.mobile-image:before {
content: "\f029";
}

.tile-image.profile-image {
background-image: url("profile_50b.png");
.tile-image.profile-image:before {
content: "\f044";
}

.tile-image.shortcut-image {
background-image: url("shortcut_50b.png");
.tile-image.shortcut-image:before {
content: "\f08e";
}

.tile-image.user-image {
background-image: url("user_50b.png");
.tile-image.user-image:before {
content: "\f016";
}

.tile-image.support-image {
background-image: url("support_50b.png");
.tile-image.support-image:before {
content: "\f007";
}

.tile-image.guest-image {
background-image: url("guest_50b.png");
.tile-image.guest-image:before {
content: "\f0c0";
}

.tile-image .admin-image {
background-image: url("admin_50b.png");
.tile-image.admin-image:before {
content: "\f0e4";
}

.tile-title {
Expand Down
Binary file removed src/main/webapp/public/resources/support_50b.png
Binary file not shown.
Binary file removed src/main/webapp/public/resources/user_50b.png
Binary file not shown.

0 comments on commit 09dda7f

Please sign in to comment.