Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: phacility/phabricator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: oeai/phabricator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 5 commits
  • 17 files changed
  • 1 contributor

Commits on Oct 20, 2015

  1. This implements 3 dark themes for users, only adding in submenu Displ…

    …ayPreferences->Accessibillity
    
    inverted high contrast
    one with slightly grey background and white letters (can be changed for black letters as well)
    and even more dark with blue letters
    
    to do this i've inserted 3 variables for font color, menu background and main background,
    they are also propagated in 2 other main themes.
    those will be inserted in css with next push, so can be reverted as well
    oeai committed Oct 20, 2015
    Copy the full SHA
    d492806 View commit details
  2. tested and debugged changes

    oeai committed Oct 20, 2015
    Copy the full SHA
    aec2267 View commit details
  3. Copy the full SHA
    946684b View commit details
  4. Copy the full SHA
    6d28fb8 View commit details
  5. sync with latest master changes

    oeai committed Oct 20, 2015
    Copy the full SHA
    6bcadc6 View commit details
8 changes: 8 additions & 0 deletions src/__phutil_library_map__.php
Original file line number Diff line number Diff line change
@@ -183,6 +183,9 @@
'CalendarTimeUtilTestCase' => 'applications/calendar/__tests__/CalendarTimeUtilTestCase.php',
'CelerityAPI' => 'applications/celerity/CelerityAPI.php',
'CelerityDefaultPostprocessor' => 'applications/celerity/postprocessor/CelerityDefaultPostprocessor.php',
'CelerityDWDPostprocessor' => 'applications/celerity/postprocessor/CelerityDWDPostprocessor.php',
'CelerityDarkBgPostprocessor' => 'applications/celerity/postprocessor/CelerityDarkBgPostprocessor.php',
'CelerityContrastPostprocessor' => 'applications/celerity/postprocessor/CelerityContrastPostprocessor.php',
'CelerityHighContrastPostprocessor' => 'applications/celerity/postprocessor/CelerityHighContrastPostprocessor.php',
'CelerityLargeFontPostprocessor' => 'applications/celerity/postprocessor/CelerityLargeFontPostprocessor.php',
'CelerityManagementMapWorkflow' => 'applications/celerity/management/CelerityManagementMapWorkflow.php',
@@ -2552,6 +2555,7 @@
'PhabricatorPasteRemarkupRule' => 'applications/paste/remarkup/PhabricatorPasteRemarkupRule.php',
'PhabricatorPasteSchemaSpec' => 'applications/paste/storage/PhabricatorPasteSchemaSpec.php',
'PhabricatorPasteSearchEngine' => 'applications/paste/query/PhabricatorPasteSearchEngine.php',
'PhabricatorPasteSnippet' => 'applications/paste/snippet/PhabricatorPasteSnippet.php',
'PhabricatorPasteTestDataGenerator' => 'applications/paste/lipsum/PhabricatorPasteTestDataGenerator.php',
'PhabricatorPasteTransaction' => 'applications/paste/storage/PhabricatorPasteTransaction.php',
'PhabricatorPasteTransactionComment' => 'applications/paste/storage/PhabricatorPasteTransactionComment.php',
@@ -3893,6 +3897,9 @@
'CelerityAPI' => 'Phobject',
'CelerityDefaultPostprocessor' => 'CelerityPostprocessor',
'CelerityHighContrastPostprocessor' => 'CelerityPostprocessor',
'CelerityDarkBgPostprocessor' => 'CelerityPostprocessor',
'CelerityDWDPostprocessor' => 'CelerityPostprocessor',
'CelerityContrastPostprocessor' => 'CelerityPostprocessor',
'CelerityLargeFontPostprocessor' => 'CelerityPostprocessor',
'CelerityManagementMapWorkflow' => 'CelerityManagementWorkflow',
'CelerityManagementWorkflow' => 'PhabricatorManagementWorkflow',
@@ -6633,6 +6640,7 @@
'PhabricatorPasteRemarkupRule' => 'PhabricatorObjectRemarkupRule',
'PhabricatorPasteSchemaSpec' => 'PhabricatorConfigSchemaSpec',
'PhabricatorPasteSearchEngine' => 'PhabricatorApplicationSearchEngine',
'PhabricatorPasteSnippet' => 'Phobject',
'PhabricatorPasteTestDataGenerator' => 'PhabricatorTestDataGenerator',
'PhabricatorPasteTransaction' => 'PhabricatorApplicationTransaction',
'PhabricatorPasteTransactionComment' => 'PhabricatorApplicationTransactionComment',
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
<?php

final class CelerityContrastPostprocessor
extends CelerityPostprocessor {

public function getPostprocessorKey() {
return 'icontrast';
}

public function getPostprocessorName() {
return pht('Inverted Contrast Colors');
}

public function buildVariables() {
return array(
'blue' => '#2889c6',
'sky' => '#2889c6',
'anchor' => '#2889c6',

//Theme phacility
'bg-dark-grey' => '#000',
'bg-menu' => '#000',
'defaulttext' => '#fff',
'page.background.light' => '#363737',
'page.background.dark' => '#000',

'thinblueborder' => '#3f4447',
'lightblueborder' => '#444a5a',
'blueborder' => '#91a3c1',

'lightgreyborder' => '#bdbdbd',
'greyborder' => '#d7d7d7',

'lightbluetext' => '#bdbdbd',
'bluetext' => '#d7d7d7',
'darkbluetext' => '#fff',

'lightgreytext' => '#bdbdbd',
'greytext' => '#d7d7d7',
'darkgreytext' => '#fff',

'sh-redtext' => '#d7d7d7',
'sh-redborder' => '#a2a2a2',

'sh-greentext' => '#d7d7d7',
'sh-greenborder' => '#a2a2a2',

'sh-bluetext' => '#d7d7d7',
'sh-blueborder' => '#a2a2a2',

'sh-yellowtext' => '#d7d7d7',
'sh-yellowborder' => '#a2a2a2',

'sh-orangetext' => '#d7d7d7',
'sh-orangeborder' => '#a2a2a2',

'sh-violettext' => '#d7d7d7',
'sh-violetborder' => '#a2a2a2',

'sh-indigotext' => '#d7d7d7',
'sh-indigoborder' => '#a2a2a2',

'sh-pinktext' => '#d7d7d7',
'sh-pinkborder' => '#a2a2a2',

'sh-greytext' => '#d7d7d7',
'sh-greyborder' => '#a2a2a2',

'sh-disabledtext' => '#bdbdbd',
'sh-disabledborder' => '#a2a2a2',


);
}

}
204 changes: 204 additions & 0 deletions src/applications/celerity/postprocessor/CelerityDWDPostprocessor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,204 @@
<?php

final class CelerityDWDPostprocessor
extends CelerityPostprocessor {

public function getPostprocessorKey() {
return 'DarkWingDuck';
}

public function getPostprocessorName() {
return pht('DarkWingDuck');
}

public function buildDefaultPostprocessor() {
return null;
}

public function buildVariables() {
return array(
// Fonts
'basefont' => "13px 'Segoe UI', 'Segoe UI Web Regular', ".
"'Segoe UI Symbol', 'Lato', 'Helvetica Neue', Helvetica, ".
"Arial, sans-serif",

'fontfamily' => "'Segoe UI', 'Segoe UI Web Regular', ".
"'Segoe UI Symbol', 'Lato', 'Helvetica Neue', Helvetica, ".
"Arial, sans-serif",

// Drop Shadow
'dropshadow' => '0 1px 6px rgba(0, 0, 0, .25)',
'whitetextshadow' => '0 1px 0 rgba(255, 255, 255, 1)',

// Anchors
'anchor' => '#136CB2',

// Font Sizes
'biggestfontsize' => '15px',
'biggerfontsize' => '14px',
'normalfontsize' => '13px',
'smallerfontsize' => '12px',
'smallestfontsize' => '11px',

//Theme phacility bcc3d5 none
'bg-dark-grey' => '#363737',
'bg-menu' => '3e3e3e',
'defaulttext' => '#bcc3d5',


// Base Colors
'red' => '#c0392b',
'lightred' => '#f4dddb',
'orange' => '#e67e22',
'lightorange' => '#f7e2d4',
'yellow' => '#f1c40f',
'lightyellow' => '#fdf5d4',
'green' => '#139543',
'lightgreen' => '#d7eddf',
'blue' => '#2980b9',
'lightblue' => '#daeaf3',
'sky' => '#3498db',
'lightsky' => '#ddeef9',
'fire' => '#e62f17',
'indigo' => '#6e5cb6',
'lightindigo' => '#eae6f7',
'pink' => '#da49be',
'lightpink' => '#fbeaf8',
'violet' => '#8e44ad',
'lightviolet' => '#ecdff1',
'charcoal' => '#4b4d51',
'backdrop' => '#dadee7',
'hoverwhite' => 'rgba(255,255,255,.6)',
'hovergrey' => '#c5cbcf',
'hoverblue' => '#eceff5',
'hoverborder' => '#dfe1e9',
'hoverselectedgrey' => '#bbc4ca',
'hoverselectedblue' => '#e6e9ee',
'borderinset' => 'inset 0 0 0 1px rgba(55,55,55,.15)',

// Base Greys
'lightgreyborder' => '#C7CCD9',
'greyborder' => '#A1A6B0',
'darkgreyborder' => '#676A70',
'lightgreytext' => '#92969D',
'greytext' => '#74777D',
'darkgreytext' => '#4B4D51',
'lightgreybackground' => '#F7F7F7',
'greybackground' => '#EBECEE',
'darkgreybackground' => '#DFE0E2',

// Base Blues
'thinblueborder' => '#DDE8EF',
'lightblueborder' => '#BFCFDA',
'blueborder' => '#8C98B8',
'darkblueborder' => '#626E82',
'lightbluebackground' => '#F8F9FC',
'bluebackground' => '#777C8a',
'lightbluetext' => '#8C98B8',
'bluetext' => '#6B748C',
'darkbluetext' => '#184ed9',
// 'darkbluetext' '#464C5C' 8eabff 133eab,


// Base Greens
'lightgreenborder' => '#bfdac1',
'greenborder' => '#8cb89c',
'greentext' => '#3e6d35',
'lightgreenbackground' => '#e6f2e4',

// Base Red
'lightredborder' => '#f4c6c6',
'redborder' => '#eb9797',
'redtext' => '#802b2b',
'lightredbackground' => '#f5e1e1',

// Base Violet
'lightvioletborder' => '#cfbddb',
'violetborder' => '#b589ba',
'violettext' => '#603c73',
'lightvioletbackground' => '#e9dfee',

// Shades are a more muted set of our base colors
// better suited to blending into other UIs.

// Shade Red
'sh-lightredborder' => '#efcfcf',
'sh-redborder' => '#d1abab',
'sh-redicon' => '#c85a5a',
'sh-redtext' => '#a53737',
'sh-redbackground' => '#f7e6e6',

// Shade Orange
'sh-lightorangeborder' => '#f8dcc3',
'sh-orangeborder' => '#dbb99e',
'sh-orangeicon' => '#e78331',
'sh-orangetext' => '#ba6016',
'sh-orangebackground' => '#fbede1',

// Shade Yellow
'sh-lightyellowborder' => '#e9dbcd',
'sh-yellowborder' => '#c9b8a8',
'sh-yellowicon' => '#9b946e',
'sh-yellowtext' => '#726f56',
'sh-yellowbackground' => '#fdf3da',

// Shade Green
'sh-lightgreenborder' => '#c6e6c7',
'sh-greenborder' => '#a0c4a1',
'sh-greenicon' => '#4ca74e',
'sh-greentext' => '#326d34',
'sh-greenbackground' => '#ddefdd',

// Shade Blue
'sh-lightblueborder' => '#cfdbe3',
'sh-blueborder' => '#a7b5bf',
'sh-blueicon' => '#6b748c',
// 'sh-bluetext' '#464c5c',
'sh-bluetext' => '#8eabff',
'sh-bluebackground' => '#dee7f8',

// Shade Indigo
'sh-lightindigoborder' => '#d1c9ee',
'sh-indigoborder' => '#bcb4da',
'sh-indigoicon' => '#8672d4',
'sh-indigotext' => '#6e5cb6',
'sh-indigobackground' => '#eae6f7',

// Shade Violet
'sh-lightvioletborder' => '#e0d1e7',
'sh-violetborder' => '#bcabc5',
'sh-violeticon' => '#9260ad',
'sh-violettext' => '#69427f',
'sh-violetbackground' => '#efe8f3',

// Shade Pink
'sh-lightpinkborder' => '#f6d5ef',
'sh-pinkborder' => '#d5aecd',
'sh-pinkicon' => '#e26fcb',
'sh-pinktext' => '#da49be',
'sh-pinkbackground' => '#fbeaf8',

// Shade Grey
'sh-lightgreyborder' => '#d8d8d8',
'sh-greyborder' => '#b2b2b2',
'sh-greyicon' => '#757575',
'sh-greytext' => '#555555',
'sh-greybackground' => '#e7e7e7',

// Shade Disabled
'sh-lightdisabledborder' => '#e5e5e5',
'sh-disabledborder' => '#cbcbcb',
'sh-disabledicon' => '#bababa',
'sh-disabledtext' => '#a6a6a6',
'sh-disabledbackground' => '#f3f3f3',

// Background color for "light" themes.
'page.background.light' => '#e0e4ed',

// Background color for "dark" themes.
'page.background.dark' => '#212c46',

);
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,203 @@
<?php

final class CelerityDarkBgPostprocessor
extends CelerityPostprocessor {

public function getPostprocessorKey() {
return 'DarkBg';
}

public function getPostprocessorName() {
return pht('Dark-Grey Background');
}

public function buildDefaultPostprocessor() {
return null;
}

public function buildVariables() {
return array(
// Fonts
'basefont' => "13px 'Segoe UI', 'Segoe UI Web Regular', ".
"'Segoe UI Symbol', 'Lato', 'Helvetica Neue', Helvetica, ".
"Arial, sans-serif",

'fontfamily' => "'Segoe UI', 'Segoe UI Web Regular', ".
"'Segoe UI Symbol', 'Lato', 'Helvetica Neue', Helvetica, ".
"Arial, sans-serif",

// Drop Shadow
'dropshadow' => '0 1px 6px rgba(0, 0, 0, .25)',
'whitetextshadow' => '0 1px 0 rgba(255, 255, 255, 1)',

// Anchors
'anchor' => '#136CB2',

// Font Sizes
'biggestfontsize' => '15px',
'biggerfontsize' => '14px',
'normalfontsize' => '13px',
'smallerfontsize' => '12px',
'smallestfontsize' => '11px',

//Theme phacility 9fa4b0 434f68
'bg-dark-grey' => '#1c1d1d',
'bg-menu' => '#1a1d25',
'defaulttext' => '#2660f6',


// Base Colors
'red' => '#c0392b',
'lightred' => '#f4dddb',
'orange' => '#e67e22',
'lightorange' => '#f7e2d4',
'yellow' => '#f1c40f',
'lightyellow' => '#fdf5d4',
'green' => '#139543',
'lightgreen' => '#d7eddf',
'blue' => '#2980b9',
'lightblue' => '#daeaf3',
'sky' => '#3498db',
'lightsky' => '#ddeef9',
'fire' => '#e62f17',
'indigo' => '#6e5cb6',
'lightindigo' => '#eae6f7',
'pink' => '#da49be',
'lightpink' => '#fbeaf8',
'violet' => '#8e44ad',
'lightviolet' => '#ecdff1',
'charcoal' => '#4b4d51',
'backdrop' => '#dadee7',
'hoverwhite' => 'rgba(255,255,255,.6)',
'hovergrey' => '#c5cbcf',
'hoverblue' => '#eceff5',
'hoverborder' => '#dfe1e9',
'hoverselectedgrey' => '#bbc4ca',
'hoverselectedblue' => '#e6e9ee',
'borderinset' => 'inset 0 0 0 1px rgba(55,55,55,.15)',

// Base Greys
'lightgreyborder' => '#C7CCD9',
'greyborder' => '#A1A6B0',
'darkgreyborder' => '#676A70',
'lightgreytext' => '#92969D',
'greytext' => '#74777D',
'darkgreytext' => '#4B4D51',
'lightgreybackground' => '#F7F7F7',
'greybackground' => '#EBECEE',
'darkgreybackground' => '#DFE0E2',

// Base Blues
'thinblueborder' => '#DDE8EF',
'lightblueborder' => '#BFCFDA',
'blueborder' => '#8C98B8',
'darkblueborder' => '#626E82',
'lightbluebackground' => '#F8F9FC',
'bluebackground' => '#777C8a',
'lightbluetext' => '#8C98B8',
'bluetext' => '#6B748C',
'darkbluetext' => '#8eabff',
// 'darkbluetext' '#464C5C' 8eabff,

// Base Greens
'lightgreenborder' => '#bfdac1',
'greenborder' => '#8cb89c',
'greentext' => '#3e6d35',
'lightgreenbackground' => '#e6f2e4',

// Base Red
'lightredborder' => '#f4c6c6',
'redborder' => '#eb9797',
'redtext' => '#802b2b',
'lightredbackground' => '#f5e1e1',

// Base Violet
'lightvioletborder' => '#cfbddb',
'violetborder' => '#b589ba',
'violettext' => '#603c73',
'lightvioletbackground' => '#e9dfee',

// Shades are a more muted set of our base colors
// better suited to blending into other UIs.

// Shade Red
'sh-lightredborder' => '#efcfcf',
'sh-redborder' => '#d1abab',
'sh-redicon' => '#c85a5a',
'sh-redtext' => '#a53737',
'sh-redbackground' => '#f7e6e6',

// Shade Orange
'sh-lightorangeborder' => '#f8dcc3',
'sh-orangeborder' => '#dbb99e',
'sh-orangeicon' => '#e78331',
'sh-orangetext' => '#ba6016',
'sh-orangebackground' => '#fbede1',

// Shade Yellow
'sh-lightyellowborder' => '#e9dbcd',
'sh-yellowborder' => '#c9b8a8',
'sh-yellowicon' => '#9b946e',
'sh-yellowtext' => '#726f56',
'sh-yellowbackground' => '#fdf3da',

// Shade Green
'sh-lightgreenborder' => '#c6e6c7',
'sh-greenborder' => '#a0c4a1',
'sh-greenicon' => '#4ca74e',
'sh-greentext' => '#326d34',
'sh-greenbackground' => '#ddefdd',

// Shade Blue
'sh-lightblueborder' => '#cfdbe3',
'sh-blueborder' => '#a7b5bf',
'sh-blueicon' => '#6b748c',
// 'sh-bluetext' '#464c5c',
'sh-bluetext' => '#8eabff',
'sh-bluebackground' => '#dee7f8',

// Shade Indigo
'sh-lightindigoborder' => '#d1c9ee',
'sh-indigoborder' => '#bcb4da',
'sh-indigoicon' => '#8672d4',
'sh-indigotext' => '#6e5cb6',
'sh-indigobackground' => '#eae6f7',

// Shade Violet
'sh-lightvioletborder' => '#e0d1e7',
'sh-violetborder' => '#bcabc5',
'sh-violeticon' => '#9260ad',
'sh-violettext' => '#69427f',
'sh-violetbackground' => '#efe8f3',

// Shade Pink
'sh-lightpinkborder' => '#f6d5ef',
'sh-pinkborder' => '#d5aecd',
'sh-pinkicon' => '#e26fcb',
'sh-pinktext' => '#da49be',
'sh-pinkbackground' => '#fbeaf8',

// Shade Grey
'sh-lightgreyborder' => '#d8d8d8',
'sh-greyborder' => '#b2b2b2',
'sh-greyicon' => '#757575',
'sh-greytext' => '#555555',
'sh-greybackground' => '#e7e7e7',

// Shade Disabled
'sh-lightdisabledborder' => '#e5e5e5',
'sh-disabledborder' => '#cbcbcb',
'sh-disabledicon' => '#bababa',
'sh-disabledtext' => '#a6a6a6',
'sh-disabledbackground' => '#f3f3f3',

// Background color for "light" themes.
'page.background.light' => '#666768',

// Background color for "dark" themes.
'page.background.dark' => '#606268',

);
}

}
Original file line number Diff line number Diff line change
@@ -41,6 +41,11 @@ public function buildVariables() {
'normalfontsize' => '13px',
'smallerfontsize' => '12px',
'smallestfontsize' => '11px',

//Theme phacility
'bg-dark-grey' => '#fff',
'bg-menu' => '#F8F9FC',
'defaulttext' => 'none',

// Base Colors
'red' => '#c0392b',
Original file line number Diff line number Diff line change
@@ -16,6 +16,9 @@ public function buildVariables() {
'blue' => '#226B9B',
'sky' => '#226B9B',
'anchor' => '#226B9B',
'bg-dark-grey' => '#fff',
'bg-menu' => '#fff',
'defaulttext' => '#000',

'thinblueborder' => '#BFCFDA',
'lightblueborder' => '#8C98B8',
2 changes: 1 addition & 1 deletion webroot/rsrc/css/application/base/main-menu-view.css
Original file line number Diff line number Diff line change
@@ -436,7 +436,7 @@ button.phabricator-main-menu-search-dropdown .caret:before {
padding: 6px 0 6px 12px;
display: block;
font-weight: bold;
color: #000;
color: {$defaulttext};
}

.device .phabricator-dark-menu .phui-list-item-href {
Original file line number Diff line number Diff line change
@@ -31,6 +31,7 @@ div.phabricator-application-launch-container {
width: 100%;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
background: {$bg-menu};
padding: 4px 0;
}

2 changes: 1 addition & 1 deletion webroot/rsrc/css/application/config/config-options.css
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
width: 100%;
border-collapse: collapse;
border: 1px solid {$lightgreyborder};
background: #fff;
background: {$bg-dark-grey};
}

.config-option-table th,
2 changes: 1 addition & 1 deletion webroot/rsrc/css/application/config/config-template.css
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
*/
body {
overflow-y: scroll;
background: #f9f9f9;
background: {$bg-dark-grey};
margin: 0;
padding: 0;
font: 13px/1.231 'Segoe UI', 'Segoe UI Web Regular', 'Segoe UI Symbol',
2 changes: 1 addition & 1 deletion webroot/rsrc/css/application/config/setup-issue.css
Original file line number Diff line number Diff line change
@@ -76,7 +76,7 @@
}

.setup-issue-name {
color: #464C5C;
color: {$darkbluetext};
padding: 4px 8px 12px;
border-bottom: 1px solid #BFCFDA;
font-size: 15px;
3 changes: 2 additions & 1 deletion webroot/rsrc/css/application/diffusion/diffusion-source.css
Original file line number Diff line number Diff line change
@@ -5,7 +5,8 @@
.diffusion-source {
width: 100%;
font: 10px/13px "Menlo", "Consolas", "Monaco", monospace;
background: #fff;
background: {$bg-menu};
color: {$defaulttext};
}

.diffusion-source tr.phabricator-source-highlight {
8 changes: 4 additions & 4 deletions webroot/rsrc/css/core/remarkup.css
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@
background: #FEF9ED;
border: 1px solid {$sh-lightyellowborder};
display: block;
color: #000;
color: {$defaulttext};
overflow: auto;
padding: 8px;
}
@@ -53,7 +53,7 @@
}

.phabricator-remarkup tt.remarkup-monospaced {
color: #000;
color: {$defaulttext};
background: rgba(71,87,120,0.1);
padding: 1px 4px;
border-radius: 3px;
@@ -257,7 +257,7 @@
.phabricator-remarkup-toc {
float: right;
border-left: 1px solid {$lightblueborder};
background: #fff;
background: {$bg-menu};
width: 160px;
padding-left: 8px;
margin: 0 0 4px 8px;
@@ -349,7 +349,7 @@
}

.phabricator-remarkup table.remarkup-table td {
background: #ffffff;
background: {$bg-menu};
padding: 3px 6px;
}

2 changes: 1 addition & 1 deletion webroot/rsrc/css/phui/phui-box.css
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

.phui-box-border {
border: 1px solid {$lightblueborder};
background-color: #fff;
background-color: {$bg-dark-grey};
border-radius: 3px;
}

4 changes: 2 additions & 2 deletions webroot/rsrc/css/phui/phui-document.css
Original file line number Diff line number Diff line change
@@ -68,7 +68,7 @@
.phui-sidenav-view .phui-document-inner {
margin-right: 200px;
border-right: 1px solid {$thinblueborder};
background: #fff;
background: {$bg-dark-grey};
}

.phui-document-content .phui-header-shell {
@@ -101,7 +101,7 @@
}

.phui-document-content {
background: #fff;
background: {$bg-dark-grey};
overflow: hidden;
}

6 changes: 5 additions & 1 deletion webroot/rsrc/css/phui/phui-object-item-list-view.css
Original file line number Diff line number Diff line change
@@ -70,6 +70,7 @@ ul.phui-object-item-list-view {

.phui-object-box .phui-object-item-list-view {
margin: 0;

}

.phui-object-item-status-icon {
@@ -107,7 +108,7 @@ ul.phui-object-item-list-view {
}

.phui-object-item-objname {
color: #000;
color: {$defaulttext};
cursor: text;
font-weight: bold;
}
@@ -155,6 +156,7 @@ ul.phui-object-item-list-view {
display: table;
table-layout: fixed;
width: 100%;
background: {$bg-dark-grey};
}

.phui-object-item-table-row {
@@ -264,6 +266,7 @@ ul.phui-object-item-list-view {
.phui-object-box .phui-object-item-list-view {
padding: 0;
border: none;

}

.phui-object-box .phui-object-item-frame {
@@ -664,6 +667,7 @@ ul.phui-object-item-list-view .phui-object-item-selected
.phui-object-box .phui-object-item-list-view .phui-object-item-frame {
border: none;
border-bottom: 1px solid {$thinblueborder};
background: {$bg-dark-grey};
}

.phui-object-box .phui-object-item-list-header {
5 changes: 4 additions & 1 deletion webroot/rsrc/css/phui/phui-remarkup-preview.css
Original file line number Diff line number Diff line change
@@ -12,7 +12,10 @@
color: {$bluetext};
text-transform: uppercase;
padding: 8px;
background-color: {$lightgreybackground};
background-color: {$darkgreybackground};

/** background-color: {$lightgreybackground};
*/
border-bottom: 1px solid {$thinblueborder};
display: block;
border-top-left-radius: 3px;