/*
 * semanticcms-pagegraph - SemanticCMS component to view a graph of the current page and related pages.
 * Copyright (C) 2016, 2022  AO Industries, Inc.
 *     support@aoindustries.com
 *     7262 Bull Pen Cir
 *     Mobile, AL 36695
 *
 * This file is part of semanticcms-pagegraph.
 *
 * semanticcms-pagegraph is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * semanticcms-pagegraph is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with semanticcms-pagegraph.  If not, see <https://www.gnu.org/licenses/>.
 */

/* Exists for page outlines, but we don't want to see it */
#semanticcms-pagegraph-header {
  display: none;
}
#semanticcms-pagegraph-dag {
  /* This font stays centered better while scaling */
  font: 300 14px 'Helvetica Neue', Helvetica;
}
g.semanticcms-pagegraph-this-page > rect {
  fill: #ffff00;
}
g.semanticcms-pagegraph-page-disabled > rect {
  fill: #c0c0c0;
}
.node rect {
  stroke: #333;
  fill: #fff;
}
.edgePath path {
  stroke: #333;
  fill: #333;
  stroke-width: 1.5px;
}
/* Make it obvious the node is clickable */
/*
.node {
  cursor: pointer;
  text-decoration: underline;
}
 */
