mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Merge pull request #2722 from rabuzarus/0808-frio-backgrounds
frio: add some missing page backgrounds
This commit is contained in:
commit
35a8f641a8
1 changed files with 36 additions and 6 deletions
|
@ -1798,15 +1798,18 @@ ul.dropdown-menu li:hover {
|
|||
-moz-box-shadow: 0 0 3px #dadada;
|
||||
}
|
||||
|
||||
/* PAGES */
|
||||
/* *******
|
||||
* PAGES
|
||||
*********/
|
||||
|
||||
/* Profile-page */
|
||||
.generic-page-wrapper ,#profile-page, .profile_photo-content-wrapper,
|
||||
.suggest-content-wrapper, .common-content-wrapper,
|
||||
.generic-page-wrapper, .profile_photo-content-wrapper, .videos-content-wrapper,
|
||||
.suggest-content-wrapper, .common-content-wrapper, .help-content-wrapper,
|
||||
.allfriends-content-wrapper, .match-content-wrapper, .dirfind-content-wrapper,
|
||||
.directory-content-wrapper, .manage-content-wrapper, .notes-content-wrapper,
|
||||
.message-content-wrapper, .apps-content-wrapper,
|
||||
.admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper {
|
||||
.message-content-wrapper, .apps-content-wrapper, .photos-content-wrapper,
|
||||
.admin-content-wrapper, .group-content-wrapper, .viewcontacts-content-wrapper,
|
||||
.dfrn_request-content-wrapper, .friendica-content-wrapper, .credits-content-wrapper,
|
||||
.nogroup-content-wrapper, .profperm-content-wrapper {
|
||||
min-height: calc(100vh - 150px);
|
||||
padding: 15px;
|
||||
padding-bottom: 20px;
|
||||
|
@ -1822,6 +1825,8 @@ ul.dropdown-menu li:hover {
|
|||
-webkit-box-shadow: 0 0 3px #dadada;
|
||||
-moz-box-shadow: 0 0 3px #dadada;
|
||||
}
|
||||
|
||||
/* Profile-page */
|
||||
#profile-content-standard,
|
||||
#profile-content-advanced {
|
||||
overflow: hidden;
|
||||
|
@ -2243,6 +2248,31 @@ ul.notif-network-list > li:hover .intro-action-buttons {
|
|||
display: block;
|
||||
margin-top: 5px
|
||||
}
|
||||
|
||||
/* Search Page */
|
||||
|
||||
/* This is a little bit hacky. Since the search page is used for diferent
|
||||
content types we can't apply the generic-page-wrapper class.
|
||||
So we apply the css of the generic-page-wrapper class to the ul element with some
|
||||
little modifications to emulate a standard page template */
|
||||
.search-content-wrapper > ul.viewcontact_wrapper {
|
||||
min-height: calc(100vh - 150px);
|
||||
padding-top: 15px;
|
||||
padding-bottom: 20px;
|
||||
margin: 0;
|
||||
margin-bottom: 20px;
|
||||
border: none;
|
||||
/*background-color: #fff;*/
|
||||
background-color: rgba(255,255,255,$contentbg_transp);
|
||||
border-radius: 4px;
|
||||
position: relative;
|
||||
/*overflow: hidden;*/
|
||||
color: #555;
|
||||
box-shadow: 0 0 3px #dadada;
|
||||
-webkit-box-shadow: 0 0 3px #dadada;
|
||||
-moz-box-shadow: 0 0 3px #dadada;
|
||||
}
|
||||
|
||||
/*
|
||||
* Overwriting for transparency and other colors
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue