746367a74647e88e2c6029f30a403589b97247c8 kate Mon Jul 29 16:46:36 2019 -0700 Add styling for pressed button on hgTracks. refs #23922 diff --git src/hg/htdocs/style/HGStyle.css src/hg/htdocs/style/HGStyle.css index abe2a46..d771f33 100644 --- src/hg/htdocs/style/HGStyle.css +++ src/hg/htdocs/style/HGStyle.css @@ -787,15 +787,25 @@ .speciesButton { display: inline-block; margin-top: 5px; margin-bottom: 5px; text-align: center } /* hgPublicSessions-specific */ table.sessionTable tbody tr:hover{ background-color:#fdffb7 !important; } a:link img.sessionThumbnail { padding: 5px; } + +input[type="submit"].pressed { + background: #dcdcff; + webkit-box-shadow: inset 0 1px 4px rgba(0,0,0,0.6); + moz-box-shadow: inset 0 1px 4px rgba(0,0,0,0.6); + box-shadow: inset 0 1px 4px rgba(0,0,0,0.6); + background: #dcdcff; + text-shadow: 0 -1px 0 rgba(0,0,0,0.4); + border-radius: 4px; +}