2001-12-12 10:59:31 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-12-12 10:59:31 +03:00
|
|
|
|
|
|
|
@namespace url(http://www.w3.org/2000/svg);
|
2012-10-04 01:32:35 +04:00
|
|
|
@namespace xml url(http://www.w3.org/XML/1998/namespace);
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2005-04-12 19:46:42 +04:00
|
|
|
style, script, symbol {
|
2004-04-13 03:28:39 +04:00
|
|
|
display: none;
|
|
|
|
}
|
2004-10-27 04:25:08 +04:00
|
|
|
|
2005-04-26 04:10:17 +04:00
|
|
|
switch {
|
|
|
|
-moz-binding: none !important;
|
2011-09-24 12:28:55 +04:00
|
|
|
}
|
2005-04-26 04:10:17 +04:00
|
|
|
|
2012-07-09 04:55:34 +04:00
|
|
|
svg:not(:root), symbol, image, marker, pattern, foreignObject {
|
2005-04-12 19:46:42 +04:00
|
|
|
overflow: hidden;
|
2004-11-23 16:51:57 +03:00
|
|
|
}
|
2006-02-28 14:27:29 +03:00
|
|
|
|
2012-09-06 08:58:46 +04:00
|
|
|
@media all and (-moz-is-glyph) {
|
|
|
|
:root {
|
2013-09-14 15:40:49 +04:00
|
|
|
fill: context-fill;
|
|
|
|
fill-opacity: context-fill-opacity;
|
|
|
|
stroke: context-stroke;
|
|
|
|
stroke-opacity: context-stroke-opacity;
|
|
|
|
stroke-width: context-value;
|
|
|
|
stroke-dasharray: context-value;
|
|
|
|
stroke-dashoffset: context-value;
|
2012-09-06 08:58:46 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-28 14:27:29 +03:00
|
|
|
foreignObject {
|
|
|
|
margin: 0 ! important;
|
|
|
|
padding: 0 ! important;
|
2007-05-05 10:22:36 +04:00
|
|
|
border-width: 0 ! important;
|
2013-01-26 14:28:15 +04:00
|
|
|
white-space: normal;
|
2006-02-28 14:27:29 +03:00
|
|
|
}
|
2006-06-12 08:27:10 +04:00
|
|
|
|
2011-09-24 12:28:55 +04:00
|
|
|
@media all and (-moz-is-resource-document) {
|
|
|
|
foreignObject *|* {
|
2011-09-26 20:29:06 +04:00
|
|
|
-moz-appearance: none !important;
|
2011-09-24 12:28:55 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-12 08:27:10 +04:00
|
|
|
*|*::-moz-svg-foreign-content {
|
|
|
|
display: block !important;
|
2012-02-22 03:01:41 +04:00
|
|
|
/* We need to be an absolute and fixed container */
|
2013-03-20 22:59:11 +04:00
|
|
|
transform: translate(0) !important;
|
2008-09-16 02:41:42 +04:00
|
|
|
text-indent: 0;
|
2006-06-12 08:27:10 +04:00
|
|
|
}
|
2012-05-17 08:05:09 +04:00
|
|
|
|
2013-11-11 06:23:56 +04:00
|
|
|
/* Set |transform-origin:0% 0%;| for all SVG elements except outer-<svg>,
|
2012-05-17 08:05:09 +04:00
|
|
|
noting that 'svg' as a child of 'foreignObject' counts as outer-<svg>.
|
|
|
|
*/
|
|
|
|
*:not(svg),
|
|
|
|
*:not(foreignObject) > svg {
|
2013-03-20 22:59:11 +04:00
|
|
|
transform-origin:0 0;
|
2012-05-17 08:05:09 +04:00
|
|
|
}
|
|
|
|
|
2012-08-10 11:09:55 +04:00
|
|
|
*|*::-moz-svg-text {
|
|
|
|
unicode-bidi: inherit;
|
2013-06-16 15:05:39 +04:00
|
|
|
vector-effect: inherit;
|
2012-08-10 11:09:55 +04:00
|
|
|
}
|
2012-10-04 01:32:35 +04:00
|
|
|
|
|
|
|
*[xml|space=preserve] {
|
|
|
|
white-space: -moz-pre-discard-newlines;
|
|
|
|
}
|
2013-09-16 09:06:29 +04:00
|
|
|
|
|
|
|
*|*::-moz-svg-marker-anon-child {
|
|
|
|
clip-path: inherit;
|
|
|
|
filter: inherit;
|
|
|
|
mask: inherit;
|
|
|
|
opacity: inherit;
|
|
|
|
}
|