2013-06-01 00:03:59 +02:00
|
|
|
/**
|
|
|
|
* @provides phui-document-view-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
.phui-document-view {
|
2013-06-05 17:41:43 +02:00
|
|
|
margin-bottom: 16px;
|
|
|
|
position: relative;
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-document-view {
|
2013-09-07 18:13:55 +02:00
|
|
|
border: 1px solid {$lightblueborder};
|
|
|
|
border-bottom: 1px solid {$blueborder};
|
2013-06-05 17:41:43 +02:00
|
|
|
max-width: 960px;
|
|
|
|
margin: 16px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-document-view.phui-offset-view {
|
2013-06-01 00:03:59 +02:00
|
|
|
max-width: 800px;
|
2013-06-05 17:41:43 +02:00
|
|
|
}
|
|
|
|
|
2014-06-05 00:41:05 +02:00
|
|
|
/* Fix so that Phriction Document preview is the same width as the document */
|
|
|
|
.device-desktop .phui-remarkup-preview .phui-document-view {
|
|
|
|
width: 800px;
|
|
|
|
}
|
|
|
|
|
2013-06-05 17:41:43 +02:00
|
|
|
.phui-document-sidenav {
|
|
|
|
position:absolute;
|
2013-06-06 00:03:56 +02:00
|
|
|
width: 200px;
|
2013-06-05 17:41:43 +02:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2013-06-06 21:47:40 +02:00
|
|
|
.device-phone .phui-document-sidenav {
|
|
|
|
position: static;
|
|
|
|
width: auto;
|
|
|
|
border-top: 1px solid #d7d7d7;
|
|
|
|
border-bottom: 1px solid #d7d7d7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phui-sidenav-view .phui-document-inner {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2013-06-05 17:41:43 +02:00
|
|
|
.phui-sidenav-view .phui-document-inner {
|
|
|
|
margin-right: 200px;
|
|
|
|
border-right: 1px solid #e7e7e7;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-document-bookname {
|
|
|
|
padding: 8px 16px;
|
|
|
|
color: #9ca5b5;
|
2013-08-28 19:29:02 +02:00
|
|
|
background-color: #fff;
|
2013-09-07 18:13:55 +02:00
|
|
|
border-bottom: 1px solid {$lightblueborder};
|
2013-06-05 17:41:43 +02:00
|
|
|
}
|
|
|
|
|
2013-09-04 20:50:57 +02:00
|
|
|
.device-phone .phui-document-bookname {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
|
2013-06-05 17:41:43 +02:00
|
|
|
.phui-document-bookname .bookname {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-document-bookname .bookdescription {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2013-09-17 18:12:37 +02:00
|
|
|
.phui-document-content .phui-header-shell {
|
2013-08-28 19:29:02 +02:00
|
|
|
border-top: none;
|
2013-09-07 18:13:55 +02:00
|
|
|
border-bottom: 1px solid {$lightblueborder};
|
2013-06-05 17:41:43 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 21:29:07 +02:00
|
|
|
.phui-document-content
|
2013-09-17 18:12:37 +02:00
|
|
|
.phui-header-shell.phui-header-no-backgound {
|
2013-09-05 21:29:07 +02:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
|
|
margin: 0 0 16px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-document-content
|
2013-09-17 18:12:37 +02:00
|
|
|
.phui-header-shell.phui-header-no-backgound
|
|
|
|
.phui-header-view {
|
2013-09-05 21:29:07 +02:00
|
|
|
padding: 8px 0 4px;
|
2014-03-06 20:28:24 +01:00
|
|
|
font-size: 15px;
|
2013-09-05 21:29:07 +02:00
|
|
|
}
|
|
|
|
|
2013-09-17 18:12:37 +02:00
|
|
|
.phui-document-content .phui-header-view {
|
2013-09-07 18:13:55 +02:00
|
|
|
color: {$bluetext};
|
2013-08-28 19:29:02 +02:00
|
|
|
text-shadow: 0 1px 2px #fff;
|
|
|
|
}
|
|
|
|
|
2013-10-11 16:53:56 +02:00
|
|
|
.phui-document-content .phui-property-list-container {
|
2013-09-04 20:50:57 +02:00
|
|
|
border-color: #dde8ef;
|
2013-06-05 17:41:43 +02:00
|
|
|
}
|
|
|
|
|
2013-10-11 16:53:56 +02:00
|
|
|
.phui-document-content .phui-property-list-view {
|
2013-06-05 17:41:43 +02:00
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #f6f7f8;
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-document-content {
|
|
|
|
min-height: 240px;
|
|
|
|
background: #fff;
|
|
|
|
|
|
|
|
/* NOTE: This fixes margins, not floats, and can not be replaced with
|
|
|
|
the ".group" class. See T3150.
|
|
|
|
*/
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phui-document-content .phabricator-action-list-view {
|
|
|
|
margin: 0;
|
|
|
|
border-bottom: 1px solid #c0c5d1;
|
2013-09-07 18:13:55 +02:00
|
|
|
background: {$lightgreybackground};
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-document-content .phabricator-remarkup {
|
2013-06-05 17:41:43 +02:00
|
|
|
padding: 16px;
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phui-document-content .phabricator-remarkup {
|
2013-06-05 17:41:43 +02:00
|
|
|
padding: 8px;
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-document-content .phabricator-action-list-view {
|
|
|
|
position: absolute;
|
2014-03-30 21:56:28 +02:00
|
|
|
top: 16px;
|
|
|
|
right: -160px;
|
2013-06-01 00:03:59 +02:00
|
|
|
float: none;
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
border: none;
|
|
|
|
width: 160px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-phone .phui-document-content .phabricator-remarkup-toc {
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-document-content .phabricator-remarkup .remarkup-code-block {
|
|
|
|
clear: both;
|
2013-06-05 17:41:43 +02:00
|
|
|
margin: 16px 0;
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.device-desktop .phui-document-offset {
|
2014-03-30 21:56:28 +02:00
|
|
|
padding-right: 120px;
|
2013-06-01 00:03:59 +02:00
|
|
|
}
|
2013-09-29 00:55:38 +02:00
|
|
|
|
2013-10-11 16:53:56 +02:00
|
|
|
.phui-document-view .phui-property-list-view {
|
2013-09-29 00:55:38 +02:00
|
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
|
|
}
|