Tweaking Registro.br page in order to improve the UX. Links inside a table will now have a different color, and long texts while editing a zone will be wrapped (avoiding horizontal scrolling).
(obsolete?) Registro.br - table word-wrap and link color by denilsonsa
Imported from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/105921.user.css
Details
Authordenilsonsa
LicensePublic Domain
Categoryregistro.br
Created
Updated
Size801 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Registro.br - table word-wrap and link color
@namespace USO Archive
@author denilsonsa
@description `Tweaking Registro.br page in order to improve the UX. Links inside a table will now have a different color, and long texts while editing a zone will be wrapped (avoiding horizontal scrolling).`
@version 20141002.16.46
@license Public Domain
@preprocessor uso
==/UserStyle== */
@-moz-document regexp("https?://registro\\.br/cgi-bin/nicbr/zoneedit.*") {
td.rdata {
max-width: 700px;
overflow-wrap: break-word;
word-wrap: break-word;
}
}
@-moz-document regexp("https?://registro\\.br/cgi-bin/nicbr/.*") {
html table a,
html table a:hover,
html table a:focus {
/* Instead of black. */
color: #009f15;
}
}