Skip to content
This repository was archived by the owner on Sep 5, 2019. It is now read-only.

Mobile fix (CSS part) - now with CSS formatting #5

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions src/css/style.dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ a.action-button.detail {
a.action-button.detail:hover {
background-color: #6e6e6e;
}

@media only screen and (min-width: 768px) {

.header {
Expand All @@ -145,25 +144,32 @@ a.action-button.detail:hover {
.content {
padding: 15px 35px;
}

}

@media only screen and (min-width: 1024px) {

.user.panel {
display: block;
}

.logged.in ul li.user {
.logged.in ul li.user {
display: none;
}
.gravatar {
display:none;
}
.header-menu .notifications {
display:none;
}
.header-menu li:last-child {
margin-right:0 !important;
}
}

@media only screen and (min-width: 800px) {
.header-menu .notifications {
display:inline;
}
}

@media only screen and (min-width: 1170px) {

.logged.in ul li.user {
display: block;
}

}