Improve mobile usability
This commit is contained in:
parent
9ec9ae0c6c
commit
086d512d83
2 changed files with 21 additions and 13 deletions
|
|
@ -23,6 +23,7 @@
|
|||
* Fix user contact sharing/receiving [#4163](https://github.com/diaspora/diaspora/issues/4163)
|
||||
* Change image to ajax-loader when closing lightbox [#3229](https://github.com/diaspora/diaspora/issues/3229)
|
||||
* Fix pointer cursor on the file upload button [#4349](https://github.com/diaspora/diaspora/pull/4349)
|
||||
* Improve mobile usability [#4354](https://github.com/diaspora/diaspora/pull/4354)
|
||||
|
||||
## Features
|
||||
* Admin: add option to find users under 13 (COPPA) [#4252](https://github.com/diaspora/diaspora/pull/4252)
|
||||
|
|
|
|||
|
|
@ -331,21 +331,31 @@ body {
|
|||
#nav_badges {
|
||||
display: inline-block;
|
||||
float: right;
|
||||
padding: 4px 12px;
|
||||
}
|
||||
#nav_badges a:hover {
|
||||
text-decoration: none; }
|
||||
#nav_badges .badge {
|
||||
padding: 4px 12px;
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.badge {
|
||||
position: relative;
|
||||
display: inline;
|
||||
margin-left: 3px;
|
||||
padding: 8px 3px;
|
||||
padding-bottom: 9px;
|
||||
padding-bottom: 9px;
|
||||
font-weight: bold;
|
||||
font-size: smaller;
|
||||
width: 28px; }
|
||||
#nav_badges .badge:hover .badge_count {
|
||||
background-color: #bd0902; }
|
||||
width: 28px;
|
||||
}
|
||||
|
||||
.badge:hover .badge_count {
|
||||
background-color: #bd0902;
|
||||
}
|
||||
|
||||
a {
|
||||
padding: 5px 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.badge_count {
|
||||
-moz-border-radius: 2px 2px 2px 2px;
|
||||
|
|
@ -546,6 +556,7 @@ footer {
|
|||
left: 0;
|
||||
top: 40px;
|
||||
width: 100%;
|
||||
min-height: 220px;
|
||||
|
||||
fieldset {
|
||||
padding: 10px;
|
||||
|
|
@ -629,10 +640,6 @@ select {
|
|||
line-height: 16px;
|
||||
}
|
||||
|
||||
.new_status_message {
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.reshare {
|
||||
border-bottom: 1px solid #ccc;
|
||||
padding: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue