summaryrefslogtreecommitdiff
path: root/chimere_example_project/chimere_example_static/chimere/css
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-04 20:43:40 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-04 20:43:40 +0200
commitd06361146b4f77c9b759272f9103c36732db8cc5 (patch)
tree2eb7fc84d929159ffbbc4cf2b9de0dea226c2c71 /chimere_example_project/chimere_example_static/chimere/css
parent22f9a272242bb7fa18f92b3f7b1ed556e1a8f20e (diff)
downloadChimère-d06361146b4f77c9b759272f9103c36732db8cc5.tar.bz2
Chimère-d06361146b4f77c9b759272f9103c36732db8cc5.zip
Simplify project layout
Diffstat (limited to 'chimere_example_project/chimere_example_static/chimere/css')
-rw-r--r--chimere_example_project/chimere_example_static/chimere/css/form-compat.css69
1 files changed, 0 insertions, 69 deletions
diff --git a/chimere_example_project/chimere_example_static/chimere/css/form-compat.css b/chimere_example_project/chimere_example_static/chimere/css/form-compat.css
deleted file mode 100644
index f83672f..0000000
--- a/chimere_example_project/chimere_example_static/chimere/css/form-compat.css
+++ /dev/null
@@ -1,69 +0,0 @@
-input:-moz-placeholder {
- color: #999999;
-}
-
-input::-moz-placeholder {
- color: #999999;
-}
-
-input:-ms-input-placeholder {
- color: #999999;
-}
-
-input::-webkit-input-placeholder {
- color: #999999;
-}
-
-textarea,
-input {
- display: block;
- font-size: 14px;
- line-height: 1.428571429;
- color: #555555;
- vertical-align: middle;
- background-color: #ffffff;
- border: 1px solid #cccccc;
- border-radius: 4px;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
- -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
- transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-}
-
-input{
- padding: 6px 12px;
-}
-
-textarea:focus,
-input:focus {
- border-color: #81cf57;
- outline: 0;
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
-}
-
-input[disabled],
-input[readonly],
-fieldset[disabled] input {
- cursor: not-allowed;
- background-color: #eeeeee;
-}
-
-input[type="checkbox"],
-input[type="radio"] {
- display: inline;
-}
-
-.alert-error {
- color: #b94a48;
- background-color: #f2dede;
- border-color: #eed3d7;
-}
-
-.alert-error hr {
- border-top-color: #e6c1c7;
-}
-
-.alert-error .alert-link {
- color: #953b39;
-}