summaryrefslogtreecommitdiffstats
path: root/tests/sass/resources/css/parent-selector.css
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sass/resources/css/parent-selector.css')
-rw-r--r--tests/sass/resources/css/parent-selector.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/sass/resources/css/parent-selector.css b/tests/sass/resources/css/parent-selector.css
new file mode 100644
index 0000000000..9c7140e313
--- /dev/null
+++ b/tests/sass/resources/css/parent-selector.css
@@ -0,0 +1,24 @@
+a {
+ font-weight: bold;
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+body.firefox a {
+ font-weight: normal;
+}
+
+#main {
+ color: black;
+}
+
+#main a {
+ font-weight: bold;
+}
+
+#main a:hover {
+ color: red;
+} \ No newline at end of file