view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
	$ui->command('cds set member ACTOR* active');
	$ui->command('cds set member ACTOR* backup');
	$ui->command('cds set member ACTOR* idle');
	$ui->command('cds set member ACTOR* revoked');
	$ui->p('Changes the status of a member to one of the following:');
	$ui->p($ui->bold('Active members'), ' share the group data among themselves, and are advertised to receive messages.');
	$ui->p($ui->bold('Backup members'), ' share the group data (like active members), but are publicly advertised as not processing messages (like idle members). This is suitable for backup actors.');
	$ui->p($ui->bold('Idle members'), ' are part of the group, but advertised as not processing messages. They generally do not have the latest group data, and may have no group data at all. Idle members may reactivate themselves, or get reactivated by ...
	$ui->p($ui->bold('Revoked members'), ' have explicitly been removed from the group, e.g. because their private key (or device) got lost. Revoked members can be reactivated by any active member of the group.');
	$ui->p('Note that changing the status does not start or stop the corresponding actor, but just change how it is regarded by others. The status of each member should reflect its actual behavior.');
	$ui->space;
	$ui->p('After modifying the actor group members, you should "cds announce" yourself to publish the changes.');
	$ui->space;
}
	# Report the total size
	my $totalSize = 0;
	my $totalDataSize = 0;
	map { $totalSize += $_->{size} ; $totalDataSize += $_->{dataSize} } values %{$o->{objects}};
	$o->{ui}->space;
	$o->{ui}->p(scalar keys %{$o->{objects}}, ' unique objects ', $o->{ui}->bold($o->{ui}->niceFileSize($totalSize)), $o->{ui}->gray(' (', $o->{ui}->niceFileSize($totalSize - $totalDataSize), ' header and ', $o->{ui}->niceFileSize($totalDataSize), ' dat...
	$o->{ui}->pRed(scalar keys %{$o->{missingObjects}}, ' or more objects are missing') if scalar keys %{$o->{missingObjects}};
	$o->{ui}->space;
}
sub process {
	}
	# Display
	my $size = $object->byteLength;
	$o->{objects}->{$hashHex} = {size => $size, dataSize => length $object->data};
	$o->{ui}->line($hashHex, ' ', $o->{ui}->bold($o->{ui}->niceFileSize($size)), ' ', $o->{ui}->gray($object->hashesCount, ' hashes'));
	# Process all children
	$o->{ui}->pushIndent;
	foreach my $hash ($object->hashes) {
		$o->process($hash, $store) // return;
	my $o = shift;
	my $request = shift;
	my $responseCode = shift;
	my $ui = $o->{ui};
	$ui->line($o->{ui}->gray($ui->niceDateTimeLocal), '  ', $ui->blue($ui->left(15, $request->peerAddress)), '  ', $request->method, ' ', $request->path, '  ', $ui->bold($responseCode));
}
# BEGIN AUTOGENERATED
package CDS::Commands::Transfer;
	# Report the total size
	my $totalSize = 0;
	my $totalDataSize = 0;
	map { $totalSize += $_->{size} ; $totalDataSize += $_->{dataSize} } values %{$o->{objects}};
	$o->{ui}->space;
	$o->{ui}->p(scalar keys %{$o->{objects}}, ' unique objects ', $o->{ui}->bold($o->{ui}->niceFileSize($totalSize)), ' ', $o->{ui}->gray($o->{ui}->niceFileSize($totalDataSize), ' data'));
	$o->{ui}->pOrange(scalar keys %{$o->{missingObjects}}, ' or more objects are missing') if scalar keys %{$o->{missingObjects}};
	$o->{ui}->space;
}
sub process {
	}
	# Display
	my $size = $object->byteLength;
	$o->{objects}->{$hashHex} = {needed => $countNeeded, size => $size, dataSize => length $object->data};
	$o->report($hashHex, $toStores, $depth, $o->{ui}->bold($o->{ui}->niceFileSize($size)), ' ', $o->{ui}->gray($object->hashesCount, ' hashes'));
	# Process all children
	foreach my $hash ($object->hashes) {
		$o->process($hash, $fromStore, $toStores, $depth + 1) // return;
	}
sub span {
	my $o = shift;
	 CDS::UI::Span->new(@_) }
sub bold {
	my $o = shift;
	my $span = CDS::UI::Span->new(@_);
	$span->{bold} = 1;
	return $span;
}
sub underlined {
	my $o = shift;
sub darkBold {
	my $o = shift;
	my $span = CDS::UI::Span->new(@_);
	$span->{bold} = 1;
	$span->{foreground} = 240;
	return $span;
}
### Semantic output
sub title {
	my $o = shift;
	 $o->line($o->bold(@_)) }
sub left {
	my $o = shift;
	my $width = shift;
	my $text = shift;
	return;
}
sub command {
	my $o = shift;
	 $o->line($o->bold(@_)) }
sub verbose {
	my $o = shift;
	 $o->line($o->foreground(45, @_)) if $o->{verbose} }
	$o->{hasError} = 1;
	my $span = CDS::UI::Span->new(@_);
	$span->{background} = 196;
	$span->{foreground} = 15;
	$span->{bold} = 1;
	$o->line($span);
	return;
}
### Semantic formatting
	my $item = $selector->document->get($selector);
	my $revision = $item->{revision} ? $o->green('  ', $o->niceDateTime($item->{revision})) : '';
	if ($selector->{id} eq 'ROOT') {
		$o->line($o->bold($rootLabel // 'Data tree'), $revision);
		$o->recordChildren($selector->record);
		$o->selectorChildren($selector);
	} else {
		my $label = $selector->label;
		my $labelText = length $label > 64 ? substr($label, 0, 64).'â¦' : $label;
	my $parent = shift;
	if ($parent) {
		$o->{appliedForeground} = $o->{foreground} // $parent->{appliedForeground};
		$o->{appliedBackground} = $o->{background} // $parent->{appliedBackground};
		$o->{appliedBold} = $o->{bold} // $parent->{appliedBold} // 0;
		$o->{appliedUnderlined} = $o->{underlined} // $parent->{appliedUnderlined} // 0;
	} else {
		$o->{appliedForeground} = $o->{foreground};
		$o->{appliedBackground} = $o->{background};
		$o->{appliedBold} = $o->{bold} // 0;
		$o->{appliedUnderlined} = $o->{underlined} // 0;
	}
	my $style = chr(0x1b).'[0';
	$style .= ';1' if $o->{appliedBold};
view release on metacpan or search on metacpan
share/code-list.csv view on Meta::CPAN
,81,henry,,1,H,H
D,84,kilopound-force per square inch,"A unit of pressure defining the number of kilopounds force per square inch.Use kip per square inch (common code N20).",2,klbf/in²,"6,894 757 x 10ⶠPa"
,85,foot pound-force,,2,ft·lbf,"1,355 818 J"
,87,pound per cubic foot,,2,lb/ft³,"1,601 846 x 10¹ kg/m³"
,89,poise,,2,P,"0,1 Pa x s"
X,90,Saybold universal second,,3.9,,
,91,stokes,,2,St,10â»â´ m²/s
X,92,calorie per cubic centimetre,,3.9,,
X,93,calorie per gram,Use International Table (IT) calorie per gram (common code D75).,3.5,cal/g,"4,186 8 x 10³ J/kg"
X,94,curl unit,,3.9,,
X,95,twenty thousand gallon (US) tankcar,,3.4,,
view release on metacpan or search on metacpan
htdocs/web.page.tmpl view on Meta::CPAN
}
.blue_center
{
	background-color: #60c0ff;
	font-weight: bold;
	text-align: center;
}
.submit
{
htdocs/web.page.tmpl view on Meta::CPAN
border-left-width: 1px;
border-right-width: 1px;
color: navy;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 12pt;
font-weight: bold;
width: auto;
}
</style>
view release on metacpan or search on metacpan
htdocs/assets/css/CGI/Application/Demo/Basic/basic.css view on Meta::CPAN
.cgi_app_bold_gold
{
	background-color: 7f7f7f;
	color: ffd700;
	font-weight: bold;
}
.cgi_app_box
{
border-color: rgb(120,172,255);
htdocs/assets/css/CGI/Application/Demo/Basic/basic.css view on Meta::CPAN
.cgi_app_heading
{
	background-color: 3cb371;
	color: ffd700;
	font-size: 2em;
	font-weight: bold;
}
.cgi_app_no_submit
{
background-color: white;
border: none;
color: rgb(0,66,174);
font-size: 8pt;
font-weight: bold;
text-align: left;
}
.cgi_app_red
{
htdocs/assets/css/CGI/Application/Demo/Basic/basic.css view on Meta::CPAN
{
background-color: white;
border: none;
color: rgb(0,66,174);
font-size: 8pt;
font-weight: bold;
text-align: left;
text-decoration: underline;
}
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
templates/form.tmpl view on Meta::CPAN
}
  td.label { 
    text-align: right; 
    vertical-align: top; 
    width: 50%; 
    font-weight: bold;
}
  td.input { 
    text-align: left; 
    vertical-align: top; 
    width: 50%;
view release on metacpan or search on metacpan
lib/CGI/Application/NetNewsIface.pm view on Meta::CPAN
        ) .
        "</li>";
}
# TODO :
# 2. Make the current article non-linked and bold.
# 3. Add the date (?).
sub _get_thread
{
    my ($self, $nntp) = @_;
    my $article = $self->param('article');
view release on metacpan or search on metacpan
share/error.tmpl view on Meta::CPAN
}
#footer p {
    text-align: right;
    font-size: small;
    font-weight: bold;
    color: #555;
    padding: 5px;
    margin: 3px;
}
view release on metacpan or search on metacpan
example/httpdocs/css/editor.css view on Meta::CPAN
.hide, .yui-skin-sam .yui-editor-panel label.hide {
    display: none;
}
.form_control .dfv-errors {
  color: red;
  font-weight: bold;
  display: inline;
  vertical-align: top;
}
form {
example/httpdocs/css/editor.css view on Meta::CPAN
    display: table;
}
legend, h2 {
    width: 100%;
    font-weight: bold;
    text-align: center;
}
.form_control {
    width: 100%;
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
lib/CGI/Application/Plugin/Authentication/Display/Classic.pm view on Meta::CPAN
    return <<END;
div.login {
  width: 25em;
  margin: auto;
  padding: 3px;
  font-weight: bold;
  border: 2px solid $colour{base};
  color: $colour{dark};
  font-family: sans-serif;
}
div.login div {
lib/CGI/Application/Plugin/Authentication/Display/Classic.pm view on Meta::CPAN
  height: 1.5em;
  padding: 0.45em;
  text-align: left;
  color: #fff;
  font-size: 100%;
  font-weight: bold;
}
div.login .login_content {
  background: $colour{lighter};
  padding: 0.8em;
  border-top: 1px solid white;
lib/CGI/Application/Plugin/Authentication/Display/Classic.pm view on Meta::CPAN
  border-bottom: solid 2px $colour{grey};
  border-right: solid 2px $colour{grey};
  background-color: $colour{lighter};
  padding: .2em 1em ;
  font-size: 80%;
  font-weight: bold;
  color: $colour{dark};
}
div.login div.buttons {
  display: block;
  margin: 8px 4px;
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
xt/author/perlcriticrc view on Meta::CPAN
# verbose = 4
# include = 
# exclude = 
# single-policy = 
# theme = 
# color-severity-highest = bold red
# color-severity-high = magenta
# color-severity-medium = 
# color-severity-low = 
# color-severity-lowest = 
view release on metacpan or search on metacpan
lib/CGI/Application/Plugin/DebugScreen.pm view on Meta::CPAN
           }
           h2 {
               margin-top: 0;
               margin-bottom: 10px;
               font-size: medium;
               font-weight: bold;
               text-decoration: underline;
           }
           div.url {
               font-size: x-small;
               overflow: auto;
lib/CGI/Application/Plugin/DebugScreen.pm view on Meta::CPAN
               padding: 5px;
               margin: 8px;
               overflow: auto;
           }
           pre b {
               font-weight: bold;
               color: #000;
               background-color: #E68200;
           }
           h1 a.package {
               color: #999999;
view release on metacpan or search on metacpan
lib/CGI/Application/Plugin/DevPopup.pm view on Meta::CPAN
        // severity colors
        .sev_debug             { background-color: #ccffcc; color: #000; }
        .sev_info              { } // default
        .sev_warning           { background-color: #ffff99; color: #000; }
        .sev_error             { background-color: #ff9999; color: #000; }
        .sev_fatal             { background-color: #ff6600; color: #fff; font-weight: bold; }
    </style>
HEAD
$script = <<JS;
        function swap(id1,id2)
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
examples/PodViewer.pm view on Meta::CPAN
      width:42px;
      height:32px;
      margin-right:8px;
  }
  li.module div.name {
      font-weight:bold;
      font-size:12px;
      line-height:1.2em;
  }
  li.module div.cpanid {
      font-size:10px;
view release on metacpan or search on metacpan
lib/CGI/Application/Plugin/HtmlTidy/validate.tmpl view on Meta::CPAN
<style type="text/css">
    table.cap_htmltidy td			{ font-family: monospace; white-space: pre   }
    table.cap_htmltidy td.error		{ background-color: red; color: white; font-weight: bold;  }
    table.cap_htmltidy td.warning	{ background-color: yellow }
</style>
<table summary="validation results by line" class="cap_htmltidy">
<tmpl_loop output>
        <tr><td colspan="4"><tmpl_var html escape=html></td></tr>
view release on metacpan or search on metacpan
misc/style.css view on Meta::CPAN
  padding: 1px;
} 
.menubar A {
  padding: 0.8ex;
  font: bold 10pt Arial,Helvetica,sans-serif;
}
.menubar A:link, .menubar A:visited {
  color: white;
  text-decoration: none;
misc/style.css view on Meta::CPAN
  padding: 0 1ex;
  vertical-align: top;
}
.l1 {
  font-weight: bold;
}
.l2 {
  font-weight: normal;
}
misc/style.css view on Meta::CPAN
  margin: 0;
}
.t1 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}
.t2 {
  font-size: 1.0em;
  font-weight: bold;
  text-align: left;
}
.t3 {
  font-size: 1.0em;
misc/style.css view on Meta::CPAN
}
.label {
  background: #aaaaaa;
  color: black;
  font-weight: bold;
  padding: 0.2ex 1ex;
  text-align: right;
  white-space: nowrap;
  vertical-align: baseline;
}
misc/style.css view on Meta::CPAN
}
.path A {
  background: transparent;
  color: #006699;
  font-weight: bold;
}
.pages {
  background: #dddddd;
  color: #006699;
misc/style.css view on Meta::CPAN
}
A.m:link, A.m:visited {
  background: #006699;
  color: white;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:link, A.o:visited {
  background: #006699;
  color: #ccffcc;
  font: bold 10pt Arial,Helvetica,sans-serif;
  text-decoration: none;
}
A.o:hover {
  background: transparent;
misc/style.css view on Meta::CPAN
  list-style-type: none;
}
.faq DT {
  font-size: 1.4em;
  font-weight: bold;
}
.chmenu {
  background: black;
  color: red;
  font: bold 1.1em Arial,Helvetica,sans-serif;
  margin: 1ex auto;
  padding: 0.5ex;
}
.chmenu TD {
view release on metacpan or search on metacpan
lib/CGI/Application/Plugin/MessageStack.pm view on Meta::CPAN
Meanwhile, in your (HTML::Template) template code:
 ...
 <style type="text/css">
   .INFO {
     font-weight: bold;
   }
   .ERROR {
     color: red;
   }
 </style>
lib/CGI/Application/Plugin/MessageStack.pm view on Meta::CPAN
Here's a quick TT example:
 <style type="text/css">
   .INFO {
     font-weight: bold;
   }
   .ERROR {
     color: red;
   }
 </style>
view release on metacpan or search on metacpan
templates/ajax_search_results.tmpl view on Meta::CPAN
  auto_complete styles needed for AUTO_SUGGEST functionality
-->
<style>
label {
    font-weight: bold;
}
div.pagination {
    background: #eff7e9;
    border: 1px solid #888888;
}
view release on metacpan or search on metacpan
htdocs/assets/css/cgi/application/util/util.css view on Meta::CPAN
}
.blue_center
{
	background-color: #60c0ff;
	font-weight: bold;
	text-align: center;
}
.green
{
view release on metacpan or search on metacpan
eg/01_template.pl view on Meta::CPAN
      body       {font-family: Verdana, sans; font-size: 10pt}
      td         {font-family: Verdana, sans; font-size: 10pt}
     .darktable  { background: black;   }
     .lighttable { background: white;   }
     .titletable { background: #dedede; }
     .error      { color = red; font-weight: bold}
     .small      { font-size: 8pt}
    </style>
   </head>
   <body>
      <? PAGE_LOGOFF_LINK    ?>
view release on metacpan or search on metacpan
DEFAULT
	}
	if ($msg)
	{
		print qq(<p style="color: red; font-weight: bold;">$msg</p>\n);
	}
	my $formaction = $self->{formaction};
	print <<START;
<form method=post action="$formaction">
view release on metacpan or search on metacpan
AuthRegister.pm view on Meta::CPAN
h1.mobileTitle { display: none;	}
	
#content-left h1 {
 color: #883F0A;
 font-family: Georgia, "Times New Roman", Times, serif;
 font-weight: bold;
 margin: 0px 0px 5px 0px;
 font-size: 19px;
}
	
#content-left h2 { display: none; }
AuthRegister.pm view on Meta::CPAN
h1.mobileTitle { display: none;	}
	
#content-left h1 {
 color: #883F0A;
 font-family: Georgia, "Times New Roman", Times, serif;
 font-weight: bold;
 margin: 0px 0px 5px 0px;
 font-size: 19px;
}
	
#content-left h2 { display: none; }
view release on metacpan or search on metacpan
lib/CGI/Authen/Simple.pm view on Meta::CPAN
}
.error {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 9pt;
    font-weight: bold;
    color: red;
}
#idtable {
        border: 1px solid #666;
view release on metacpan or search on metacpan
lib/CGI/Builder.pm view on Meta::CPAN
The Global Variables that the CBF uses are always accessed by an OOTool accessor, they are just B<Class Accessors> instead of B<Object Accessors>: the behaviour of a Class accessors (property or group) is the same, but the underlaying accessed variab...
Examples of Class Accessors are the L<"Class Property Group Accessors"> of this module, or the C<tm>, C<tm_new_args> and C<tm_lookups_package> accessors of the CGI::Builder::Magic extension (which creates the Template::Magic object just once -the fir...
B<Note>: You should clearly distinguish the B<class accessors> among the others because this particular feature is usually written in B<bold> at the start of the accessor doc.
=head2 Advanced Methods
=head3 capture( CODE )