Jump to content

Recommended Posts

Posted

I found it Button.ExtControl.Id := 'my_id';

 

Buttons are drawn using CSS theme. You need to play with CSS theme, but this will affect all buttons.

Posted

Put this into servermodule customcss

 

.button {

display: inline-block;

outline: none;

cursor: pointer;

text-align: center;

text-decoration: none;

font: 14px/100% Arial, Helvetica, sans-serif;

padding: .5em 2em .55em;

text-shadow: 0 1px 1px rgba(0,0,0,.3);

-webkit-border-radius: .5em;

-moz-border-radius: .5em;

border-radius: .5em;

-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);

-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);

box-shadow: 0 1px 2px rgba(0,0,0,.2);

}

.button:hover {

text-decoration: none;

}

.button:active {

position: relative;

top: 1px;

}

 

/* white */

.white {

color: #606060;

border: solid 1px #b7b7b7;

background: #fff;

background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));

background: -moz-linear-gradient(top, #fff, #ededed);

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');

}

.white:hover {

background: #ededed;

background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));

background: -moz-linear-gradient(top, #fff, #dcdcdc);

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');

}

.white:active {

color: #999;

background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));

background: -moz-linear-gradient(top, #ededed, #fff);

filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');

 

 

use UniLabel.Caption = <a href="#" class="button white" target=_blank>...</a>

Guest tendon
Posted

Accessing ExtControl.Id gives me an access violation; and I don't see ExtControl as a property in the palette. Is it supposed to be private or protected somehow?

  • Administrators
Posted

Accessing ExtControl.Id gives me an access violation; and I don't see ExtControl as a property in the palette. Is it supposed to be private or protected somehow?

 

It can only be accessed in webmode.

Guest tendon
Posted

It can only be accessed in webmode.

 

Farshad, what do you mean "in webmode"?

 

I made the call from within...

 

procedure TMainForm.UniFormCreate(Sender: TObject);

 

... should that be guarded with something like "if webmode then... " or what do you mean?

  • Administrators
Posted

Farshad, what do you mean "in webmode"?

 

I made the call from within...

 

procedure TMainForm.UniFormCreate(Sender: TObject);

 

... should that be guarded with something like "if webmode then... " or what do you mean?

if WebMode then
begin

end;

Guest tendon
Posted

if WebMode then
begin

end;

 

 

Thanks, that worked.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...