This time I looked very closely throughout the whole stylesheet.cc for #access and it does not exist. I looked in the style-default.css and all I could find that had anything to do with a menu bar gradient was thing:
#menubar-wrapper {
padding: 2px 0;
background: #111;
background:-moz-linear-gradient(100% 100% 90deg, #000, #444, #303030 100%);
/* IE8 uses -ms-filter for whatever reason... */
background: -ms-filter: progid:DXImageTransform.Microsoft.gradient(
gradientType=1, startColor=#000, endColoStr=#555
);
background-image: -webkit-gradient(
linear, left top, left bottom, from(rgba(17, 17, 17, 1.0)),
to(rgba(117, 117, 117, 3.0))
);
}
When this is edited, nothing happens.