Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(706)

Unified Diff: experimental/webtry/res/webtry/sass/webtry.scss

Issue 623173004: rework webtry css with compass and bootstrap (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/webtry/res/webtry/sass/webtry.scss
diff --git a/experimental/webtry/res/css/webtry.css b/experimental/webtry/res/webtry/sass/webtry.scss
similarity index 59%
rename from experimental/webtry/res/css/webtry.css
rename to experimental/webtry/res/webtry/sass/webtry.scss
index 246fb9b77850f7a306dfb7121aeb51b8fd4dafb3..cbca5850e8021a343ba04ff2fd366545f0373f82 100644
--- a/experimental/webtry/res/css/webtry.css
+++ b/experimental/webtry/res/webtry/sass/webtry.scss
@@ -1,15 +1,12 @@
-body {
- font-family: helvetica arial sans-serif;
- margin: 0;
- padding: 0;
-}
+@import "bootstrap-compass";
+@import "bootstrap-variables";
+@import "bootstrap";
img {
box-shadow: 2px 2px 5px gray;
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAAXNSR0IArs4c6QAAAAJiS0dEAP+Hj8y/AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gUBEi4DGRAQYgAAAB1JREFUGNNjfMoAAVJQmokBDdBHgPE/lPFsYN0BABdaAwN6tehMAAAAAElFTkSuQmCC");
}
-
h1 {
font-size: 18px;
}
@@ -22,13 +19,6 @@ h2 {
cursor: wait;
}
-textarea {
- margin-left: 0;
- border: solid 1px #ccc;
- color: green;
- background: #eee;
-}
-
.iframe textarea {
resize: none;
}
@@ -38,11 +28,11 @@ template {
}
code {
- color: green;
+ color: green;
}
-pre, code {
- padding: 0;
+code {
+ padding: 0;
}
.tries {
@@ -50,34 +40,19 @@ pre, code {
float: left;
}
-#title {
- color: #ddd;
- background: #444;
- margin: 0;
- padding: 0.5em;
-}
-
-#title a:link,
-#title a:visited,
-#title a:hover,
-#title a:active
-{
- color: #ddd;
-}
-
#content {
padding: 1em;
}
#tryHistory {
- position: absolute;
- top: 3em;
- right: 10px;
- width: 75px;
-}
+ position: absolute;
+ top: 3em;
+ right: 10px;
+ width: 75px;
-#tryHistory .tries {
+ .tries {
float: none;
+ }
}
#chooseList {
@@ -85,38 +60,37 @@ pre, code {
flex-flow: row wrap;
}
-#chooseSource {
- display: none;
- background: ivory;
- padding: 1em;
- border: solid lightgray 2px;
+.action-buttons {
+ padding: 10px 0;
}
-#chooseSource.show {
- display: block;
+.show {
+ display: block !important;
}
-#selectedSource {
+.fiddle-output {
display: none;
}
-#selectedSource.show {
- display: block;
+#chooseSource {
+ display: none;
}
-#sourceCode {
+#selectedSource {
display: none;
}
-#sourceCode.show {
- display: block;
+#sourceCode {
+ display: none;
+ margin-top: 10px;
}
#gitInfo {
- float: right;
- font-size: 70%;
+ font-size: 70%;
}
+/* CodeMirror customization */
+
.CodeMirror-lines,
.CodeMirror-scroll
{
@@ -128,7 +102,21 @@ pre, code {
height: auto;
}
+/* Make the code editor automatically resize */
+
.CodeMirror-scroll {
overflow-y: hidden;
overflow-x: auto;
}
+
+/* Twitter Bootstrap customization */
+
+.navbar-brand {
+ padding: 0;
+
+ img {
+ height: 50px;
+ box-shadow: none;
+ background: none;
+ }
+}
« no previous file with comments | « experimental/webtry/res/webtry/sass/_bootstrap-variables.scss ('k') | experimental/webtry/templates/content.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698