mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
508a2a1498
Summary: Adds a search bar toggle and results for searching inside a Conpherence Room. The UI of the results itself are not styled yet, and will follow up with another diff. Test Plan: Go to Conpherence, search for "asdf", get lots of results. Search for nothing, get no change, search for something fictitious, get no threads found (will follow up with search result UI). Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16697
129 lines
2.2 KiB
CSS
129 lines
2.2 KiB
CSS
/**
|
|
* @provides phui-icon-view-css
|
|
*/
|
|
|
|
.phui-icon-example .phui-icon-view {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phui-icon-view.sprite-tokens {
|
|
height: 18px;
|
|
width: 18px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.phui-icon-view.sprite-login {
|
|
height: 28px;
|
|
width: 28px;
|
|
}
|
|
|
|
.phui-icon-view.phuihead-medium {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|
|
|
|
.phui-icon-view.phuihead-small {
|
|
height: 35px;
|
|
width: 35px;
|
|
background-size: 35px;
|
|
}
|
|
|
|
.phui-icon-has-text:before {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
a.phui-icon-view:hover {
|
|
text-decoration: none;
|
|
color: {$sky};
|
|
}
|
|
|
|
/* - Icon in a Circle ------------------------------------------------------- */
|
|
|
|
.phui-icon-circle {
|
|
border: 1px solid {$lightblueborder};
|
|
border-radius: 24px;
|
|
height: 24px;
|
|
width: 24px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.phui-icon-circle.circle-medium {
|
|
height: 36px;
|
|
width: 36px;
|
|
border-radius: 36px;
|
|
}
|
|
|
|
.phui-icon-circle .phui-icon-view {
|
|
height: 24px;
|
|
width: 24px;
|
|
font-size: 11px;
|
|
line-height: 24px;
|
|
color: {$lightblueborder};
|
|
cursor: pointer;
|
|
}
|
|
|
|
.phui-icon-circle.circle-medium .phui-icon-view {
|
|
font-size: 18px;
|
|
line-height: 36px;
|
|
}
|
|
|
|
a.phui-icon-circle.hover-sky:hover {
|
|
text-decoration: none;
|
|
border-color: {$sky};
|
|
cursor: pointer;
|
|
}
|
|
|
|
a.phui-icon-circle.hover-sky:hover .phui-icon-view {
|
|
color: {$sky};
|
|
}
|
|
|
|
a.phui-icon-circle.hover-violet:hover {
|
|
text-decoration: none;
|
|
border-color: {$violet};
|
|
cursor: pointer;
|
|
}
|
|
|
|
a.phui-icon-circle.hover-violet:hover .phui-icon-view {
|
|
color: {$violet};
|
|
}
|
|
|
|
a.phui-icon-circle.hover-pink:hover {
|
|
text-decoration: none;
|
|
border-color: {$pink};
|
|
cursor: pointer;
|
|
}
|
|
|
|
a.phui-icon-circle.hover-pink:hover .phui-icon-view {
|
|
color: {$pink};
|
|
}
|
|
|
|
a.phui-icon-circle.hover-green:hover {
|
|
text-decoration: none;
|
|
border-color: {$green};
|
|
cursor: pointer;
|
|
}
|
|
|
|
a.phui-icon-circle.hover-green:hover .phui-icon-view {
|
|
color: {$green};
|
|
}
|
|
|
|
/* - Icon in a Square ------------------------------------------------------- */
|
|
|
|
.phui-icon-view.phui-icon-square {
|
|
height: 40px;
|
|
width: 40px;
|
|
color: #fff;
|
|
font-size: 26px;
|
|
text-align: center;
|
|
line-height: 38px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
a.phui-icon-view.phui-icon-square:hover {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
}
|