Lines Matching refs:css

42 #include "svg/css-ostringstream.h"
1056 CSSOStringStream css;
1060 css << "currentColor";
1062 css << "inherit";
1066 css << color_buf;
1069 if ( !css.str().empty() ) {
1070 css << " ";
1072 css << "icc-color(" << this->value.color.icc->colorProfile;
1076 css << ", " << *i;
1078 css << ')';
1082 if ( !css.str().empty() ) {
1083 return (name + ":" + css.str() + ";");
1285 CSSOStringStream css;
1288 css << "inherit";
1294 css << "url(" << uri << ")";
1299 if ( !css.str().empty() ) {
1300 css << " ";
1302 css << "none";
1306 if ( !css.str().empty() ) {
1307 css << " ";
1309 css << "currentColor";
1313 if ( !css.str().empty() ) {
1314 css << " ";
1316 css << "context-fill";
1320 if ( !css.str().empty() ) {
1321 css << " ";
1323 css << "context-stroke";
1327 if ( !css.str().empty() ) {
1328 css << " ";
1332 css << color_buf;
1336 if ( !css.str().empty() ) {
1337 css << " ";
1339 css << "icc-color(" << this->value.color.icc->colorProfile;
1343 css << ", " << *i;
1345 css << ')';
1349 if ( !css.str().empty() ) {
1350 return (name + ":" + css.str() + ";");
1557 CSSOStringStream css;
1560 css << "inherit";
1566 css << "normal";
1570 if (i!=0) css << " ";
1571 css << "fill";
1574 if (i!=0) css << " ";
1575 css << "stroke";
1578 if (i!=0) css << " ";
1579 css << "markers";
1587 return (name + ":" + css.str() + ";");
1959 CSSOStringStream css;
1962 css << "inherit";
1966 css << enum_font_size[i].key;
1975 css << sp_style_css_size_px_to_units(this->computed, unit) << sp_style_get_css_unit_string(unit);
1977 css << (this->value * 100.0) << "%";
1979 return (name + ":" + css.str() + ";");
2256 // CSSOStringStream css;
2330 CSSOStringStream css;
2333 css << "inherit";
2337 css << enum_baseline_shift[i].key;
2342 css << this->value << (this->unit == SP_CSS_UNIT_EM ? "em" : "ex");
2344 css << this->computed << "px"; // must specify px, see inkscape bug 1221626, mozilla bug 234789
2347 css << (this->value * 100.0) << "%";
2349 return (name + ":" + css.str() + ";");