You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tamaya.apache.org by pl...@apache.org on 2016/04/17 16:12:38 UTC

incubator-tamaya git commit: TAMAYA-95 Custom CSS rule to prevent CSS provided via the Reflow Skin for Maven to hide some links on the start page.

Repository: incubator-tamaya
Updated Branches:
  refs/heads/master 268ebeb88 -> c9d84a6a1


TAMAYA-95 Custom CSS rule to prevent CSS provided via the Reflow Skin for Maven to hide some links on the start page.


Project: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/commit/c9d84a6a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/tree/c9d84a6a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tamaya/diff/c9d84a6a

Branch: refs/heads/master
Commit: c9d84a6a11ad065a403ad62582e5cdedf195126e
Parents: 268ebeb
Author: Oliver B. Fischer <pl...@apache.org>
Authored: Sun Apr 17 16:04:13 2016 +0200
Committer: Oliver B. Fischer <pl...@apache.org>
Committed: Sun Apr 17 16:04:13 2016 +0200

----------------------------------------------------------------------
 src/site/resources/css/site.css | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tamaya/blob/c9d84a6a/src/site/resources/css/site.css
----------------------------------------------------------------------
diff --git a/src/site/resources/css/site.css b/src/site/resources/css/site.css
new file mode 100644
index 0000000..a10b235
--- /dev/null
+++ b/src/site/resources/css/site.css
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ *
+ */
+
+/*
+ * This fixes a CSS rule from reflow-skin.css which hides
+ * some links on the page and makes them unclickable.
+ * Oliver B. Fischer, 2016-04-17
+ */
+h1[id]:before,
+h2[id]:before,
+h3[id]:before,
+h4[id]:before,
+h5[id]:before,
+h6[id]:before,
+a[name]:before {
+    height: 0;
+    margin: 0;
+}