Case-changing rename shuffle part two Change palette title background to "black"
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/36f13d5f Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/36f13d5f Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/36f13d5f Branch: refs/heads/5.4-js-rewrite Commit: 36f13d5f9d142166a255446ec2ff591a10b69c0d Parents: 9dd60d3 Author: Howard M. Lewis Ship <[email protected]> Authored: Wed Nov 7 10:21:42 2012 -0800 Committer: Howard M. Lewis Ship <[email protected]> Committed: Wed Nov 7 10:21:42 2012 -0800 ---------------------------------------------------------------------- .../resources/META-INF/assets/core/Palette.css | 47 +++++++++++++++ .../resources/META-INF/assets/core/XPalette.css | 47 --------------- 2 files changed, 47 insertions(+), 47 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/36f13d5f/tapestry-core/src/main/resources/META-INF/assets/core/Palette.css ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/resources/META-INF/assets/core/Palette.css b/tapestry-core/src/main/resources/META-INF/assets/core/Palette.css new file mode 100644 index 0000000..ca9e3d7 --- /dev/null +++ b/tapestry-core/src/main/resources/META-INF/assets/core/Palette.css @@ -0,0 +1,47 @@ +DIV.t-palette { + display: inline; +} + +DIV.t-palette SELECT { + margin-bottom: 2px; + width: 200px; +} + +DIV.t-palette-title { + color: white; + background-color: black; + text-align: center; + font-weight: bold; + margin-bottom: 3px; + display: block; +} + +DIV.t-palette-available { + float: left; +} + +DIV.t-palette-controls { + margin: 5px 5px; + float: left; +} + +DIV.t-palette-controls > DIV { + margin-top: 5px; +} + +DIV.t-palette-controls > DIV:first-child { + margin-top: 0; +} + +DIV.t-palette-selected { + float: left; + clear: right; +} + +DIV.t-palette-spacer { + clear: left; +} + +DIV.t-palette-title { + width: 200px; +} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/36f13d5f/tapestry-core/src/main/resources/META-INF/assets/core/XPalette.css ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/resources/META-INF/assets/core/XPalette.css b/tapestry-core/src/main/resources/META-INF/assets/core/XPalette.css deleted file mode 100644 index ca9e3d7..0000000 --- a/tapestry-core/src/main/resources/META-INF/assets/core/XPalette.css +++ /dev/null @@ -1,47 +0,0 @@ -DIV.t-palette { - display: inline; -} - -DIV.t-palette SELECT { - margin-bottom: 2px; - width: 200px; -} - -DIV.t-palette-title { - color: white; - background-color: black; - text-align: center; - font-weight: bold; - margin-bottom: 3px; - display: block; -} - -DIV.t-palette-available { - float: left; -} - -DIV.t-palette-controls { - margin: 5px 5px; - float: left; -} - -DIV.t-palette-controls > DIV { - margin-top: 5px; -} - -DIV.t-palette-controls > DIV:first-child { - margin-top: 0; -} - -DIV.t-palette-selected { - float: left; - clear: right; -} - -DIV.t-palette-spacer { - clear: left; -} - -DIV.t-palette-title { - width: 200px; -} \ No newline at end of file
