How to use the @uifabric/styling.FontClassNames.mediumPlus function in @uifabric/styling

To help you get started, we’ve selected a few @uifabric/styling examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github microsoft / pai / src / webportal / src / app / home / index / jumbotron.jsx View on Github external
t.flexAuto,
        t.z0,
        t.pa5,
        t.relative,
        t.flex,
        t.flexColumn,
        t.itemsCenter,
        t.justifyCenter,
      )}
    >
      <div>
        Platform for AI
      </div>
      <div>
        Platform for AI is an open source platform that provides complete AI
        model training and resource management capabilities, it is easy to
        extend and supports on-premise, cloud and hybrid environments in various
        scale.
      </div>
github microsoft / pai / src / webportal / src / app / job / job-view / fabric / job-detail / components / summary.jsx View on Github external
styles={{
                          root: [
                            { fontSize: IconFontSizes.medium },
                            ColorClassNames.neutralSecondary,
                          ],
                        }}
                      /&gt;
                    
                  
                
              )}
            
            <div>
              
              </div>
github microsoft / pai / src / webportal / src / app / job / job-view / fabric / job-detail / components / task-role-container-list.jsx View on Github external
isResizable: true,
        onRender: item =&gt; {
          const id = item.containerId;
          return (
            !isNil(id) &amp;&amp; (
              <div>
                {id}
              </div>
            )
          );
        },
      },
      {
        key: 'ip',
        name: 'IP',
        className: FontClassNames.mediumPlus,
        headerClassName: FontClassNames.medium,
        minWidth: 80,
        maxWidth: 140,
        isResizable: true,
        fieldName: 'containerIp',
        onRender: item =&gt; {
          const ip = item.containerIp;
          return (
            !isNil(ip) &amp;&amp; (
              <div>
                 ,</div>
github microsoft / pai / src / webportal / src / app / home / index / bottom.jsx View on Github external
t.ph4,
        t.flex,
        t.flexColumn,
        t.itemsCenter,
        t.justifyBetween,
      )}
    &gt;
      <div>
        <div style="{{">
          Understand Job
        </div>
        <div style="{{">
          The job of OpenPAI defines how to execute command(s) in specified
          environment(s). A job can be model training, other kinds of commands,
          or distributed on multiple servers.
        </div>
      </div>
      
        Learn more
github microsoft / pai / src / webportal / src / app / components / status-badge.jsx View on Github external
key={`icon-${idx}-${iconName}`}
              className={c(t.absolute, t.absoluteFill)}
              styles={{
                root: {
                  color:
                    idx === 0 ? outerColor || statusColor.unknown : 'white',
                  fontSize: FontSizes.mediumPlus,
                },
              }}
              iconName={iconName}
            /&gt;
          ))}
        
      )}
      <div>
        {children}
      </div>
    
  
);
github microsoft / pai / src / webportal / src / app / home / index / bottom.jsx View on Github external
t.tc,
        t.flex,
        t.flexColumn,
        t.itemsCenter,
        t.justifyBetween,
      )}
    &gt;
      <div>
        <div style="{{">
          Submit a hello-world job
        </div>
        <div style="{{">
          With submitting a hello-world job, this section introduces more
          knowledge about job, so that you can write your own job configuration
          easily.
        </div>
      </div>
      
        Learn more
github microsoft / pai / src / webportal / src / app / job / job-view / fabric / job-detail / components / task-role-container-list.jsx View on Github external
this.showSshInfo(item.containerId)}
                  disabled={
                    isNil(item.containerId) || item.taskState !== 'RUNNING'
                  }
                /&gt;
              )}
              
                  this.showContainerLog(
                    `${item.containerLog}user.pai.stdout`,
                    'stdout',
                  )
                }
                disabled={isNil(item.containerId) || isNil(item.containerIp)}
              /&gt;
github microsoft / pai / src / webportal / src / app / components / status-badge.jsx View on Github external
export const Badge = ({ children, className }) =&gt; (
  <div>{children}</div>
);
github microsoft / pai / src / webportal / src / app / job / job-view / fabric / job-retry / job-retry-card.jsx View on Github external
&gt;
              Status:
            
            
          
          <div>
            <div style="{{">
              Start Time:
            </div>
            <div>
              {printDateTime(DateTime.fromMillis(jobRetry.attemptStartedTime))}
            </div>
          </div>
          <div>
            <div style="{{">
              Duration:
            </div>
            <div>
              {getAttemptDurationString(jobRetry)}
            </div></div>